rust-operating-system/Cargo.toml

22 lines
321 B
TOML
Raw Normal View History

2019-07-09 02:02:08 -07:00
[package]
name = "rustos"
version = "0.1.0"
authors = ["greg <greg.shuflin@protonmail.com>"]
edition = "2018"
2019-07-09 09:42:41 -07:00
[profile.dev]
panic = "abort"
[profile.release]
panic = "abort"
2019-07-09 02:02:08 -07:00
[dependencies]
2019-07-10 01:37:58 -07:00
bootloader = "0.6.0"
2019-07-10 02:27:20 -07:00
volatile = "0.2.6"
2019-07-10 03:09:42 -07:00
spin = "0.5.0"
[dependencies.lazy_static]
version = "1.3.0"
features = ["spin_no_std"]
2019-07-09 09:42:41 -07:00