KarxOS/Cargo.toml

24 lines
473 B
TOML
Raw Permalink Normal View History

2021-09-15 11:34:02 -05:00
[package]
name = "KarxOS"
version = "0.1.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2021-09-15 20:59:14 -05:00
volatile = "0.2.6"
2021-09-15 21:14:32 -05:00
spin = "0.5.2"
2022-03-04 15:09:18 -06:00
x86_64 = "0.14.8"
2021-09-16 12:13:36 -05:00
pic8259 = "0.10.1"
2021-09-16 12:34:53 -05:00
pc-keyboard = "0.5.0"
2022-03-04 15:09:18 -06:00
linked_list_allocator = "0.9.1"
2021-09-26 13:14:30 -05:00
bit_field = "0.10.0"
2021-09-15 21:14:32 -05:00
[dependencies.lazy_static]
version = "1.0"
features = ["spin_no_std"]
2021-09-17 12:49:54 -05:00
2021-09-19 13:07:57 -05:00
[dependencies.bootloader]
2022-03-04 15:09:18 -06:00
version = "0.9.22"
2021-09-19 13:07:57 -05:00
features = ["map_physical_memory"]