1[package]
2name = "linux-raw-sys"
3version = "0.4.15"
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", "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 = []
43io_uring = []
44ioctl = []
45landlock = []
46loop_device = []
47mempolicy = []
48net = []
49netlink = []
50prctl = []
51ptrace = []
52system = []
53xdp = []
54default = ["std", "general", "errno"]
55std = []
56no_std = []
57elf = []
58rustc-dep-of-std = ["core", "compiler_builtins", "no_std"]
59