Skip to content

Commit

Permalink
Remove targets without rust-std support.
Browse files Browse the repository at this point in the history
  • Loading branch information
landhb committed Jan 15, 2024
1 parent 5133065 commit 8d2fa03
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,6 @@ jobs:
matrix:
channel: [stable]
target:
- mips64-unknown-linux-muslabi64
- mips-unknown-linux-musl
- aarch64-unknown-linux-musl
- arm-unknown-linux-musleabihf
- i686-unknown-linux-musl
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ license = "Apache-2.0 OR MIT"

[features]
default = []
std = []
std = ["bitflags/std"]

[[example]]
name = "keyctl"
required-features = ["std"]

[dependencies]
libc = {version = "0.2.132", default-features = false}
bitflags = "2.4"
bitflags = {version = "2.4", default-features = false}

[dev-dependencies]
zeroize = "1.5.7"
Expand Down

0 comments on commit 8d2fa03

Please sign in to comment.