Merge branch 'dep_of_std' into 'master'

Allow `std` to depend on `syscall`

See merge request redox-os/syscall!72
This commit is contained in:
Jeremy Soller
2023-03-14 15:23:41 +00:00

View File

@@ -11,5 +11,9 @@ edition = "2018"
[lib]
name = "syscall"
[features]
rustc-dep-of-std = ["core", "bitflags/rustc-dep-of-std"]
[dependencies]
bitflags = "1.1.0"
core = { version = "1.0.0", optional = true, package = "rustc-std-workspace-core" }