19 lines
373 B
TOML
19 lines
373 B
TOML
[package]
|
|
name = "libyalloc"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
core = { version = "1.0.0", optional = true, package = "rustc-std-workspace-core" }
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
libc = "0.2.151"
|
|
|
|
[features]
|
|
default = []
|
|
rustc-dep-of-std = [
|
|
"core"
|
|
]
|