mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 06:34:20 +00:00
0cbcef735f
* CI: add docsrs to ci * add env vars * no need for tokio things * whoops, wrong rust nightly * add swc * bump crate versions to 0.6.0-alpha.0 * hoist up warnings and shuffle cargo.toml * update cargos and disable warnings from ci * attempt fix of aws * attempt disabling aws_lc_sys globally * pull in lc-sys * add fips feature to fix docs * turn on features for aws-lc-sys on cargo-doc-all * pass along more args * fix cfg docs * fix: flakey gen box test * fix: doc_cfg in static gen * dont include readme * fix error on static gen * remove random line * temporarily disable warnings * simplify axum desktop so it doesnt count as a lib * fix binstall link * bump locks * lock fixes * revert axum desktop * dont publish some crates
28 lines
697 B
TOML
28 lines
697 B
TOML
[package]
|
|
name = "generational-box"
|
|
authors = ["Evan Almloff"]
|
|
version = { workspace = true }
|
|
edition = "2021"
|
|
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]
|
|
parking_lot = "0.12.1"
|
|
|
|
[dev-dependencies]
|
|
rand = "0.8.5"
|
|
criterion = { workspace = true }
|
|
|
|
[features]
|
|
debug_borrows = []
|
|
debug_ownership = []
|
|
|
|
[[bench]]
|
|
name = "lock"
|
|
harness = false
|
|
|
|
[package.metadata.docs.rs]
|
|
cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples"]
|