[package]
edition = "2024"
rust-version = "1.90"
name = "miden-utils-sync"
version = "0.20.3"
authors = ["Miden contributors"]
build = false
exclude = [".github/"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "no-std compatible locking primitives for the Miden project"
homepage = "https://miden.xyz"
documentation = "https://docs.rs/miden-utils-sync"
readme = "README.md"
categories = ["no-std"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/0xMiden/miden-vm"
[features]
default = ["std"]
std = ["dep:parking_lot"]
[lib]
name = "miden_utils_sync"
path = "src/lib.rs"
[dependencies.lock_api]
version = "0.4"
features = ["arc_lock"]
[dependencies.parking_lot]
version = "0.12"
optional = true
[dev-dependencies.loom]
version = "0.7"
[dev-dependencies.proptest]
version = "1.8"
features = [
"no_std",
"alloc",
]
default-features = false
[target."cfg(loom)".dependencies.loom]
version = "0.7"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(loom)"]