rust-kernel-rt 0.2.0

runtime crate for rust-kernel
Documentation
[package]
name = "rust-kernel-rt"
version = "0.2.0"
edition = "2024"
description = "runtime crate for rust-kernel"
license = "GPL-3.0"

[dependencies]
rust_kernel_shared_consts = { path = "../shared_consts", version = "0.1.0" }
arrayvec = { version = "0.7.8", default-features = false } # TODO : remove this after dynamic memory
# these are only used with rustc
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",
]