15 lines
507 B
TOML
15 lines
507 B
TOML
[package]
|
|
name = "std"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
cfg-if = { version = "1.0" }
|
|
rustc-demangle = { version = "0.1.27" }
|
|
std_detect = { path = "crates/std_detect" }
|
|
panic_abort = { path = "crates/panic_abort" }
|
|
hashbrown = { version = "0.16.1", default-features = false, features = ["nightly", "rustc-internal-api"] }
|
|
os-std-macros = { path = "../os-std-macros" }
|
|
shared = { path = "../shared", features = ["user"] }
|
|
io_crate = { package = "io", path = "../io", features = ["alloc"] }
|