diff options
| -rw-r--r-- | StrixKernel/Cargo.lock | 7 | ||||
| -rw-r--r-- | StrixKernel/Cargo.toml | 1 |
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" |
