2023-08-04 21:28:55 +00:00
|
|
|
[package]
|
2023-08-07 21:34:16 +00:00
|
|
|
name = "generational-box"
|
2023-08-04 21:28:55 +00:00
|
|
|
authors = ["Evan Almloff"]
|
2023-12-07 00:56:35 +00:00
|
|
|
version = "0.4.3"
|
2023-08-04 21:28:55 +00:00
|
|
|
edition = "2018"
|
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"]
|
2023-08-04 21:28:55 +00:00
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2023-08-04 21:53:34 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
rand = "0.8.5"
|
2023-08-04 22:46:04 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["check_generation"]
|
2023-08-05 00:23:57 +00:00
|
|
|
check_generation = []
|
2023-08-21 19:23:02 +00:00
|
|
|
debug_borrows = []
|
2023-08-21 19:28:45 +00:00
|
|
|
debug_ownership = []
|