diff options
author | Nathan Ringo <nathan@remexre.com> | 2024-08-26 15:25:55 -0500 |
---|---|---|
committer | Nathan Ringo <nathan@remexre.com> | 2024-08-26 15:25:55 -0500 |
commit | 76f0764cebe313a75b9b170fa23fa940d9e5738a (patch) | |
tree | b56641c41748594582aa56f9a539f04152cfc108 /kernel/Cargo.toml | |
parent | f1897c47a8f03955b76d521d1843a25123bd65a2 (diff) |
The start of interrupt and timer support, with some DeviceTree parsing.
Diffstat (limited to 'kernel/Cargo.toml')
-rw-r--r-- | kernel/Cargo.toml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/kernel/Cargo.toml b/kernel/Cargo.toml index ea81d5d..5eb15af 100644 --- a/kernel/Cargo.toml +++ b/kernel/Cargo.toml @@ -9,8 +9,10 @@ crate-type = ["staticlib"] [dependencies] bstr = { version = "1.10.0", default-features = false } contracts = { version = "0.6.3", default-features = false } +either = { version = "1.13.0", default-features = false } log = { version = "0.4.20", default-features = false } spin = { version = "0.9.8", default-features = false, features = ["mutex", "use_ticket_mutex"] } +void = { version = "1.0.2", default-features = false } [profile.release] codegen-units = 1 |