[[bench]]
harness = false
name = "lock"
path = "benches/lock.rs"
[dependencies.parking_lot]
version = "0.12.1"
[dependencies.tracing]
version = "0.1.37"
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.rand]
version = "0.8.5"
[features]
debug_borrows = []
debug_ownership = []
[lib]
name = "generational_box"
path = "src/lib.rs"
[package]
authors = ["Evan Almloff"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "A box backed by a generational runtime"
edition = "2021"
keywords = ["generational", "box", "memory", "allocator"]
license = "MIT OR Apache-2.0"
name = "generational-box"
readme = "README.md"
repository = "https://github.com/DioxusLabs/dioxus/"
version = "0.6.2"
[package.metadata.docs.rs]
cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples"]
[[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"