[package]
edition = "2021"
rust-version = "1.93"
name = "chio-bounded"
version = "0.1.2"
build = false
publish = ["crates-io"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Reusable bounded in-memory collections (ring, capacity-and-TTL map) with a live size gauge, for Chio serving processes"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/backbay-labs/chio"
[lib]
name = "chio_bounded"
path = "src/lib.rs"
[[test]]
name = "loom_bounded_map"
path = "tests/loom_bounded_map.rs"
[[test]]
name = "stress_bounded_map"
path = "tests/stress_bounded_map.rs"
[dependencies]
[dev-dependencies.proptest]
version = "1.10"
[target."cfg(loom)".dependencies.loom]
version = "0.7"
[lints.clippy]
expect_used = "deny"
unwrap_used = "deny"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(loom)"]