rust-operating-system/Cargo.toml

19 lines
369 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"
[dependencies]
2021-04-16 02:07:40 -07:00
bootloader = { version = "0.6.4", features = ["map_physical_memory"] }
2019-07-10 02:27:20 -07:00
volatile = "0.2.6"
2019-07-10 03:09:42 -07:00
spin = "0.5.0"
2019-07-10 17:44:22 -07:00
x86_64 = "0.7.2"
2019-07-18 03:28:55 -07:00
pic8259_simple = "0.1.1"
2019-07-18 21:49:57 -07:00
pc-keyboard = "0.5.0"
2019-07-10 03:09:42 -07:00
[dependencies.lazy_static]
version = "1.3.0"
features = ["spin_no_std"]
2019-07-09 09:42:41 -07:00