[package]
name = "rust-kernel-rt"
version = "0.2.3"
edition = "2024"
description = "runtime crate for rust-kernel"
license = "GPL-3.0"
[dependencies]
rust_kernel_shared_consts = { path = "../shared_consts", version = "0.2.1" }
core = {
package = "rustc-std-workspace-core",
version = "1.0.1",
optional = true,
}
alloc = {
package = "rustc-std-workspace-alloc",
version = "1.0.1",
optional = true,
}
[features]
rustc-dep-of-std = [
"dep:core",
"dep:alloc",
"rust_kernel_shared_consts/rustc-dep-of-std",
]