# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "syscalls" version = "0.6.18" authors = [ "Jason White ", "Baojun Wang ", ] description = """ A list of Linux system calls. """ homepage = "https://github.com/jasonwhite/syscalls" documentation = "https://docs.rs/syscalls" readme = "README.md" keywords = [ "syscall", "linux", ] license = "BSD-2-Clause" repository = "https://github.com/jasonwhite/syscalls" [package.metadata.docs.rs] all-features = true rustdoc-args = [ "--cfg", "doc_cfg", ] [dependencies.serde] version = "1.0" features = ["derive"] optional = true default-features = false [dependencies.serde_repr] version = "0.1" optional = true [dev-dependencies.libc] version = "0.2" [dev-dependencies.serde_json] version = "1" [features] aarch64 = [] all = [ "aarch64", "arm", "mips", "mips64", "powerpc", "powerpc64", "riscv32", "riscv64", "s390x", "sparc", "sparc64", "x86", "x86_64", ] arm = [] default = [ "std", "serde", ] full = [ "std", "serde", "all", ] mips = [] mips64 = [] powerpc = [] powerpc64 = [] riscv32 = [] riscv64 = [] s390x = [] serde = [ "dep:serde", "serde_repr", ] sparc = [] sparc64 = [] std = [] with-serde = [ "serde", "serde_repr", ] x86 = [] x86_64 = []