kernel/Cargo.toml

21 lines
294 B
TOML
Raw Permalink Normal View History

2022-12-22 13:23:08 +01:00
[package]
name = "kernel"
version = "0.1.0"
edition = "2018"
[profile.dev]
panic = "abort"
2022-12-23 16:09:45 +01:00
overflow-checks = false
2022-12-22 13:23:08 +01:00
[profile.release]
panic = "abort"
2022-12-23 16:09:45 +01:00
[dependencies.lazy_static]
version = "1.0"
features = ["spin_no_std"]
2022-12-22 13:23:08 +01:00
[dependencies]
bootloader = "0.9.23"
2022-12-23 16:09:45 +01:00
volatile = "0.2.6"
spin = "0.5.2"