# 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" rust-version = "1.70" name = "rustix-futex-sync" version = "0.2.3" authors = ["Dan Gohman "] build = false include = [ "src", "Cargo.toml", "COPYRIGHT", "LICENSE*", "/*.md", ] autobins = false autoexamples = false autotests = false autobenches = false description = "Linux futex-based synchronization" documentation = "https://docs.rs/rustix-futex-sync" readme = "README.md" keywords = [ "linux", "futex", "condvar", "mutex", "rwlock", ] categories = [ "concurrency", "os::unix-apis", "no-std", ] license = "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT" repository = "https://github.com/sunfishcode/rustix-futex-sync" [package.metadata.docs.rs] features = ["atomic_usize"] [lib] name = "rustix_futex_sync" path = "src/lib.rs" [dependencies.compiler_builtins] version = "0.1.101" optional = true [dependencies.core] version = "1.0.0" optional = true package = "rustc-std-workspace-core" [dependencies.lock_api] version = "0.4.7" optional = true default-features = false [dependencies.rustix] version = "0.38.35" features = [ "thread", "time", ] default-features = false [dev-dependencies.rand] version = "0.8.5" [features] atomic_usize = ["lock_api?/atomic_usize"] default = ["lock_api"] nightly = ["lock_api?/nightly"] rustc-dep-of-std = [ "dep:core", "rustix/rustc-dep-of-std", "compiler_builtins", ]