20 lines
435 B
TOML
20 lines
435 B
TOML
[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"
|
|
|
|
[profile.release]
|
|
opt-level = "z"
|
|
lto = true
|
|
|
|
[features]
|
|
# use `--no-default-features` or comment out next line to disable allocator
|
|
default = ["buddy-alloc"]
|