1[package] 2name = "linux-raw-sys" 3version = "0.1.4" 4authors = ["Dan Gohman <dev@sunfishcode.online>"] 5description = "Generated bindings for Linux's userspace API" 6documentation = "https://docs.rs/linux-raw-sys" 7license = "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT" 8repository = "https://github.com/sunfishcode/linux-raw-sys" 9edition = "2018" 10keywords = ["linux", "uapi", "ffi"] 11categories = ["external-ffi-bindings"] 12exclude = ["/gen", "/.*"] 13rust-version = "1.48" 14 15[dependencies] 16core = { version = "1.0.0", optional = true, package = "rustc-std-workspace-core" } 17compiler_builtins = { version = '0.1.49', optional = true } 18 19[dev-dependencies] 20static_assertions = "1.1.0" 21libc = "0.2.100" 22 23[package.metadata.docs.rs] 24features = ["default", "ioctl", "netlink"] 25targets = ["x86_64-unknown-linux-gnu", "i686-unknown-linux-gnu"] 26 27# The rest of this file is auto-generated! 28[features] 29errno = [] 30general = [] 31ioctl = [] 32netlink = [] 33default = ["std", "general", "errno"] 34std = [] 35no_std = [] 36rustc-dep-of-std = ["core", "compiler_builtins", "no_std"] 37