2024-05-23 18:39:00 +00:00
|
|
|
[package]
|
2024-06-10 20:57:38 +00:00
|
|
|
name = "kernel"
|
2024-05-23 18:39:00 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[lib]
|
2024-06-10 20:57:38 +00:00
|
|
|
name="kernel"
|
2024-05-23 18:39:00 +00:00
|
|
|
test=false
|
|
|
|
crate-type=["staticlib"]
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2024-06-12 20:37:24 +00:00
|
|
|
bitflags = "2.5.0"
|
2024-09-02 14:51:10 +00:00
|
|
|
cfg-if = "1.0.0"
|
2024-09-01 20:42:39 +00:00
|
|
|
crossbeam = { version = "0.8.4", default-features = false, features = ["alloc"] }
|
|
|
|
hashbrown = "0.14.5"
|
2024-06-10 20:57:38 +00:00
|
|
|
lazy_static = { version = "1.4.0", features = ["spin_no_std"] }
|
2024-05-23 18:39:00 +00:00
|
|
|
log = "0.4.21"
|
2024-06-10 20:57:38 +00:00
|
|
|
multiboot2 = "0.20.2"
|
2024-09-02 14:51:10 +00:00
|
|
|
nalgebra = { version = "0.33.0", default-features = false }
|
2024-06-12 20:37:24 +00:00
|
|
|
once = "0.3.4"
|
2024-06-10 20:57:38 +00:00
|
|
|
pc-keyboard = "0.7.0"
|
|
|
|
pic8259 = "0.11.0"
|
|
|
|
spin = "0.9.8"
|
2024-06-12 20:37:24 +00:00
|
|
|
talc = "4.4.1"
|
2024-06-10 20:57:38 +00:00
|
|
|
uart_16550 = "0.3.0"
|
|
|
|
x86 = "0.52.0"
|
|
|
|
x86_64 = "0.15.1"
|