[build-dependencies.rustversion]
default-features = false
version = "1.0.14"
[lib]
name = "wait_on_address"
path = "src/lib.rs"
[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = "build.rs"
categories = ["concurrency", "os", "no-std"]
description = "Cross-platform atomic wait and wake (aka futex) functionality."
edition = "2024"
keywords = ["atomic", "futex"]
license = "BSD-2-Clause"
name = "wait_on_address"
readme = "README.md"
repository = "https://github.com/DouglasDwyer/wait_on_address"
version = "0.1.4"
[target.'cfg(any(target_os = "linux", target_os = "android", target_os = "freebsd", target_os = "macos"))'.dependencies.libc]
default-features = false
version = "0.2"
[target.'cfg(target_arch = "wasm32")'.dependencies.js-sys]
default-features = false
version = "0.3.67"
[target.'cfg(target_arch = "wasm32")'.dependencies.wasm-bindgen]
default-features = false
version = "0.2.90"
[target.'cfg(target_arch = "wasm32")'.dependencies.web-sys]
default-features = false
features = ["Window"]
version = "0.3.24"
[target."cfg(windows)".dependencies.windows-sys]
default-features = false
features = ["Win32_System_Threading", "Win32_Foundation"]
version = "0.61.0"
[[test]]
name = "test"
path = "tests/test.rs"