dioxus/packages/generational-box/Cargo.toml

28 lines
629 B
TOML
Raw Normal View History

[package]
name = "generational-box"
authors = ["Evan Almloff"]
version = "0.4.3"
2024-01-19 03:27:55 +00:00
edition = "2021"
2023-12-06 06:57:20 +00:00
description = "A box backed by a generational runtime"
license = "MIT OR Apache-2.0"
repository = "https://github.com/DioxusLabs/dioxus/"
keywords = ["generational", "box", "memory", "allocator"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2023-10-26 17:47:53 +00:00
parking_lot = "0.12.1"
2023-08-04 21:53:34 +00:00
[dev-dependencies]
rand = "0.8.5"
2023-10-26 17:47:53 +00:00
criterion = "0.3"
2023-08-04 22:46:04 +00:00
[features]
default = ["check_generation"]
2023-08-05 00:23:57 +00:00
check_generation = []
debug_borrows = []
2023-08-21 19:28:45 +00:00
debug_ownership = []
2023-10-26 17:47:53 +00:00
[[bench]]
name = "lock"
harness = false