diff --git a/zerOS/Cargo.lock b/zerOS/Cargo.lock index bed5eb4..af30a7e 100644 --- a/zerOS/Cargo.lock +++ b/zerOS/Cargo.lock @@ -263,7 +263,7 @@ version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "14377e276b2c8300513dff55ba4cc4142b44e5d6de6d00eb5b2307d650bb4ec1" dependencies = [ - "hashbrown", + "hashbrown 0.15.4", "lexical", "spin", "unicode-ident", @@ -520,13 +520,19 @@ version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2" +[[package]] +name = "foldhash" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb" + [[package]] name = "fontdue" version = "0.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2e57e16b3fe8ff4364c0661fdaac543fb38b29ea9bc9c2f45612d90adf931d2b" dependencies = [ - "hashbrown", + "hashbrown 0.15.4", "ttf-parser", ] @@ -661,7 +667,18 @@ checksum = "5971ac85611da7067dbfcabef3c70ebb5606018acd9e2a3903a0da507521e0d5" dependencies = [ "allocator-api2", "equivalent", - "foldhash", + "foldhash 0.1.5", +] + +[[package]] +name = "hashbrown" +version = "0.16.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d" +dependencies = [ + "allocator-api2", + "equivalent", + "foldhash 0.2.0", ] [[package]] @@ -717,7 +734,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e" dependencies = [ "equivalent", - "hashbrown", + "hashbrown 0.15.4", ] [[package]] @@ -977,11 +994,11 @@ dependencies = [ [[package]] name = "lru" -version = "0.14.0" +version = "0.16.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9f8cc7106155f10bdf99a6f379688f543ad6596a415375b36a59a054ceda1198" +checksum = "96051b46fc183dc9cd4a223960ef37b9af631b55191852a8274bfef064cda20f" dependencies = [ - "hashbrown", + "hashbrown 0.16.0", ] [[package]] @@ -2256,7 +2273,7 @@ dependencies = [ "getrandom", "gimli", "goblin", - "hashbrown", + "hashbrown 0.15.4", "heapless 0.8.0", "impls", "indexmap", diff --git a/zerOS/Cargo.toml b/zerOS/Cargo.toml index 22f55f3..65835eb 100644 --- a/zerOS/Cargo.toml +++ b/zerOS/Cargo.toml @@ -54,7 +54,7 @@ paste = "1.0.15" #static_assertions = "1.1.0" bytemuck = "1.23.0" bitfrob = "1.3.2" -lru = "0.14.0" +lru = "0.16.2" raw-cpuid = "11.5.0" #ctor_bare = "0.2.1" goblin = { version = "0.10", default-features = false }