LD53/Cargo.toml

21 lines
435 B
TOML
Raw Normal View History

2023-04-29 02:02:19 +00:00
[package]
name = "cart"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
crate-type = ["cdylib"]
[dependencies]
buddy-alloc = { version = "0.4.1", optional = true }
tinyrand = "0.5.0"
2023-04-29 02:02:19 +00:00
[profile.release]
opt-level = "z"
lto = true
[features]
# use `--no-default-features` or comment out next line to disable allocator
default = ["buddy-alloc"]