aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNatasha Moongrave <natasha@256phi.eu>2026-03-11 11:18:17 +0100
committerNatasha Moongrave <natasha@256phi.eu>2026-03-11 11:18:17 +0100
commit0704a673a07a57929145c48b9a0e899aabf08bea (patch)
tree3a360ec9afe24eb0dcc7fd92e372d26559f48f6d
parent7612b5cdd5294a50e49a62cb1d838b6e02603c6e (diff)
added pc-keyboard as a dependency in Cargo.toml to avoid configuring all of the keyboard codes manually
-rw-r--r--StrixKernel/Cargo.lock7
-rw-r--r--StrixKernel/Cargo.toml1
2 files changed, 8 insertions, 0 deletions
diff --git a/StrixKernel/Cargo.lock b/StrixKernel/Cargo.lock
index 291827f..33b2149 100644
--- a/StrixKernel/Cargo.lock
+++ b/StrixKernel/Cargo.lock
@@ -36,6 +36,12 @@ dependencies = [
]
[[package]]
+name = "pc-keyboard"
+version = "0.7.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ed089a1fbffe3337a1a345501c981f1eb1e47e69de5a40e852433e12953c3174"
+
+[[package]]
name = "pic8259"
version = "0.10.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -68,6 +74,7 @@ version = "0.1.0"
dependencies = [
"bootloader",
"lazy_static",
+ "pc-keyboard",
"pic8259",
"spin 0.5.2",
"uart_16550",
diff --git a/StrixKernel/Cargo.toml b/StrixKernel/Cargo.toml
index 6d28919..bc5294f 100644
--- a/StrixKernel/Cargo.toml
+++ b/StrixKernel/Cargo.toml
@@ -18,6 +18,7 @@ spin = "0.5.2"
x86_64 = "0.14.2"
uart_16550 = "0.2.0"
pic8259 = "0.10.1"
+pc-keyboard = "0.7.0"
[dependencies.lazy_static]
version = "1.0"