[package]
edition = "2021"
rust-version = "1.83.0"
name = "generational-box"
version = "0.7.4"
authors = ["Evan Almloff"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A box backed by a generational runtime"
readme = "README.md"
keywords = [
"generational",
"box",
"memory",
"allocator",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/DioxusLabs/dioxus/"
[package.metadata.docs.rs]
cargo-args = [
"-Zunstable-options",
"-Zrustdoc-scrape-examples",
]
[features]
debug_borrows = []
debug_ownership = []
[lib]
name = "generational_box"
path = "src/lib.rs"
[[test]]
name = "basic"
path = "tests/basic.rs"
[[test]]
name = "errors"
path = "tests/errors.rs"
[[test]]
name = "reference_counting"
path = "tests/reference_counting.rs"
[[test]]
name = "reused"
path = "tests/reused.rs"
[[test]]
name = "sync"
path = "tests/sync.rs"
[[bench]]
name = "lock"
path = "benches/lock.rs"
harness = false
[dependencies.parking_lot]
version = "0.12.4"
[dependencies.tracing]
version = "0.1.41"
[dev-dependencies.criterion]
version = "0.6"
[dev-dependencies.rand]
version = "0.9"