1[package]
2name = "linux-raw-sys"
3version = "0.9.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 = "2021"
10keywords = ["linux", "uapi", "ffi"]
11categories = ["external-ffi-bindings"]
12exclude = ["/gen", "/.*"]
13rust-version = "1.63"
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", "bootparam", "btrfs", "elf_uapi", "image", "ioctl", "landlock", "netlink", "io_uring", "if_arp", "if_ether", "if_packet", "net", "ptrace", "prctl", "elf", "xdp", "mempolicy", "system", "loop_device"]
25targets = ["x86_64-unknown-linux-gnu", "i686-unknown-linux-gnu"]
26
27[lints.rust.unexpected_cfgs]
28level = "warn"
29check-cfg = [
30 'cfg(target_arch, values("xtensa"))',
31]
32
33# The rest of this file is auto-generated!
34[features]
35bootparam = []
36btrfs = []
37elf_uapi = []
38errno = []
39general = []
40if_arp = []
41if_ether = []
42if_packet = []
43image = []
44io_uring = []
45ioctl = []
46landlock = []
47loop_device = []
48mempolicy = []
49net = []
50netlink = []
51prctl = []
52ptrace = []
53system = []
54xdp = []
55default = ["std", "general", "errno"]
56std = []
57no_std = []
58elf = []
59rustc-dep-of-std = ["core", "compiler_builtins", "no_std"]
60