Files
anos/Cargo.toml

21 lines
392 B
TOML
Raw Normal View History

2021-12-01 11:24:55 +08:00
[package]
name = "anos"
version = "0.1.0"
2021-12-01 11:41:32 +08:00
authors = ["Sainnhe Park <sainnhe@gmail.com>"]
2021-12-01 11:24:55 +08:00
edition = "2021"
2021-12-01 11:41:32 +08:00
[profile.dev]
panic = "abort" # 禁用 panic 时的栈展开
2021-12-01 11:24:55 +08:00
2021-12-01 11:41:32 +08:00
[profile.release]
panic = "abort" # 禁用 panic 时的栈展开
2021-12-01 16:47:28 +08:00
[dependencies]
bootloader = "0.9.8"
2021-12-09 10:34:40 +08:00
volatile = "0.2.6"
spin = "0.5.2"
[dependencies.lazy_static]
version = "1.0"
features = ["spin_no_std"]