diff --git a/programs/Cargo.lock b/programs/Cargo.lock index ed78454ed..4284b576c 100644 --- a/programs/Cargo.lock +++ b/programs/Cargo.lock @@ -439,7 +439,7 @@ version = "0.1.0" dependencies = [ "ahash", "futures", - "hashbrown", + "hashbrown 0.11.0", "rand 0.8.3", "redshirt-framebuffer-interface", "redshirt-interface-interface", @@ -918,6 +918,12 @@ version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d7afe4a420e3fe79967a00898cc1f4db7c8a49a9333a29f8a4bd76a253d5cd04" +[[package]] +name = "hashbrown" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "362385356d610bd1e5a408ddf8d022041774b683f345a1d2cfcb4f60f8ae2db5" + [[package]] name = "heck" version = "0.3.1" @@ -1541,7 +1547,7 @@ version = "0.1.0" dependencies = [ "fnv", "futures", - "hashbrown", + "hashbrown 0.11.0", "log", "parity-scale-codec", "rand 0.8.3", @@ -1741,7 +1747,7 @@ name = "pci-printer" version = "0.1.0" dependencies = [ "fnv", - "hashbrown", + "hashbrown 0.11.0", "lazy_static", "log", "parity-scale-codec", @@ -2195,7 +2201,7 @@ version = "0.1.0" dependencies = [ "futures", "generic-array 0.14.4", - "hashbrown", + "hashbrown 0.9.1", "lazy_static", "nohash-hasher", "parity-scale-codec", @@ -2858,7 +2864,7 @@ dependencies = [ "derive_more", "fnv", "futures", - "hashbrown", + "hashbrown 0.11.0", "iced-x86", "lazy_static", "log", diff --git a/programs/compositor/Cargo.toml b/programs/compositor/Cargo.toml index 0948466d2..dca7dbcff 100644 --- a/programs/compositor/Cargo.toml +++ b/programs/compositor/Cargo.toml @@ -9,7 +9,7 @@ publish = false [dependencies] ahash = { version = "0.6.2", default-features = false } futures = "0.3.13" -hashbrown = { version = "0.9.1", default-features = false } +hashbrown = { version = "0.11.0", default-features = false } rand = "0.8.3" redshirt-framebuffer-interface = { path = "../../interfaces/framebuffer" } redshirt-interface-interface = { path = "../../interfaces/interface" } diff --git a/programs/network-manager/Cargo.toml b/programs/network-manager/Cargo.toml index a2843a535..736233784 100644 --- a/programs/network-manager/Cargo.toml +++ b/programs/network-manager/Cargo.toml @@ -9,7 +9,7 @@ publish = false [dependencies] fnv = { version = "1.0.7", default-features = false } futures = "0.3" -hashbrown = { version = "0.9.1", default-features = false } +hashbrown = { version = "0.11.0", default-features = false } log = "0.4" parity-scale-codec = "1.3.6" rand = "0.8.3" diff --git a/programs/pci-printer/Cargo.toml b/programs/pci-printer/Cargo.toml index 308c100d8..77377a517 100644 --- a/programs/pci-printer/Cargo.toml +++ b/programs/pci-printer/Cargo.toml @@ -8,7 +8,7 @@ publish = false [dependencies] fnv = { version = "1.0.7", default-features = false } -hashbrown = { version = "0.9.1", default-features = false } +hashbrown = { version = "0.11.0", default-features = false } lazy_static = "1" log = "0.4" redshirt-pci-interface = { path = "../../interfaces/pci" } diff --git a/programs/vga-vbe/Cargo.toml b/programs/vga-vbe/Cargo.toml index 6264ae10c..e67ebadbd 100644 --- a/programs/vga-vbe/Cargo.toml +++ b/programs/vga-vbe/Cargo.toml @@ -9,7 +9,7 @@ publish = false [dependencies] derive_more = "0.99.11" fnv = { version = "1.0.7", default-features = false } -hashbrown = { version = "0.9.1", default-features = false } +hashbrown = { version = "0.11.0", default-features = false } iced-x86 = { version = "1.10.3", default-features = false, features = ["decoder", "instr_info", "op_code_info", "std"] } lazy_static = "1" log = "0.4"