diff --git a/zerOS/Cargo.lock b/zerOS/Cargo.lock index bed5eb4..d5a2562 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", @@ -526,7 +526,7 @@ version = "0.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2e57e16b3fe8ff4364c0661fdaac543fb38b29ea9bc9c2f45612d90adf931d2b" dependencies = [ - "hashbrown", + "hashbrown 0.15.4", "ttf-parser", ] @@ -664,6 +664,12 @@ dependencies = [ "foldhash", ] +[[package]] +name = "hashbrown" +version = "0.16.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d" + [[package]] name = "heapless" version = "0.7.17" @@ -712,12 +718,12 @@ checksum = "7a46645bbd70538861a90d0f26c31537cdf1e44aae99a794fb75a664b70951bc" [[package]] name = "indexmap" -version = "2.9.0" +version = "2.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e" +checksum = "6717a8d2a5a929a1a2eb43a12812498ed141a0bcfb7e8f7844fbdbe4303bba9f" dependencies = [ "equivalent", - "hashbrown", + "hashbrown 0.16.0", ] [[package]] @@ -981,7 +987,7 @@ version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9f8cc7106155f10bdf99a6f379688f543ad6596a415375b36a59a054ceda1198" dependencies = [ - "hashbrown", + "hashbrown 0.15.4", ] [[package]] @@ -2256,7 +2262,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..cfd6353 100644 --- a/zerOS/Cargo.toml +++ b/zerOS/Cargo.toml @@ -86,7 +86,7 @@ psm = "0.1" logos = { version = "0.15.0", default-features = false, features = [ "export_derive", ] } -indexmap = { version = "2.9.0", default-features = false } +indexmap = { version = "2.12.0", default-features = false } corosensei = { version = "0.2.1", default-features = false } futures = { version = "0.3", default-features = false } eager2 = "1.0.1"