[package] name = "mango-rt" version = "0.2.1" edition = "2021" license = "MIT" description = "Runtime for the mango operationg system." repository = "https://gitlab.com/cyloncore/mango" readme = "README.MD" keywords = ["runtime", "kernel"] categories = ["os"] exclude = ["data"] [features] test_build = [ "mango-hal/test_build" ] qemu = [ "mango-core/qemu" ] [dependencies] crossbeam-queue = { version = "0.3.11", default-features = false, features = ["alloc"] } lazy_static = { version = "1.0", features = ["spin_no_std"]} mango-core = { path = "../mango_core", version = "0.2.1" } mango-hal = { path = "../mango_hal", version = "0.2.1" } spin = "0.9.8" futures-util = { version = "0.3.30", default-features = false, features = ["alloc"] } futures = { version = "0.3.30", default-features = false, features = ["alloc"] } conquer-once = { version = "0.4.0", default-features = false }