aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorTianhao Wang <wth@riseup.net>2024-02-01 23:44:51 +0100
committerTianhao Wang <shrik3@mailbox.org>2024-06-11 15:13:38 +0200
commita6b91c56f29257c3e54f0bfb2d99bf07262cb184 (patch)
tree13c093a1581d9a4c8c1ff34fe35c2b40c21f05b4 /Cargo.toml
parentf857bd1d4f12316bd3434192d41c2489407c11a4 (diff)
PS/2 Keyboard controller: baseline
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml7
1 files changed, 6 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 65a6dd8..c1ce753 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -9,11 +9,16 @@ edition = "2021"
spin = "0.9.8"
bitflags = "2.4.2"
+
+[dependencies.num_enum]
+version = "0.7.2"
+default-features = false
+
+
[dependencies.lazy_static]
version = "1.4"
features = ["spin_no_std"]
-
[build]
target = "x86_64-rustubs"