diff --git a/Cargo.lock b/Cargo.lock index 821e70ff..7dd8b28b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -19,7 +19,7 @@ checksum = "59317f77929f0e679d39364702289274de2f0f0b22cbf50b2b8cff2169a0b27a" dependencies = [ "cpp_demangle 0.5.1", "fallible-iterator 0.3.0", - "gimli 0.33.1", + "gimli 0.33.0", "memmap2", "object 0.39.0", "rustc-demangle", @@ -227,7 +227,7 @@ dependencies = [ "crc32fast", "criterion", "flate2", - "gimli 0.33.1", + "gimli 0.34.0", "libc", "memmap2", "nom", @@ -950,13 +950,22 @@ dependencies = [ [[package]] name = "gimli" -version = "0.33.1" +version = "0.33.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "19e16c5073773ccf057c282be832a59ee53ef5ff98db3aeff7f8314f52ffc196" +checksum = "0bf7f043f89559805f8c7cacc432749b2fa0d0a0a9ee46ce47164ed5ba7f126c" dependencies = [ "fallible-iterator 0.3.0", + "stable_deref_trait", +] + +[[package]] +name = "gimli" +version = "0.34.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1033caf0b349c518623b5396bfb2cf0bddf44f0306d543a250e5743297aafd10" +dependencies = [ "fnv", - "hashbrown 0.16.0", + "hashbrown 0.17.1", "indexmap", "stable_deref_trait", ] @@ -1025,6 +1034,12 @@ version = "0.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d" +[[package]] +name = "hashbrown" +version = "0.17.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a" + [[package]] name = "heck" version = "0.5.0" @@ -2460,7 +2475,7 @@ dependencies = [ "elsa", "fallible-iterator 0.3.0", "flate2", - "gimli 0.33.1", + "gimli 0.33.0", "goblin", "memchr", "nom", diff --git a/Cargo.toml b/Cargo.toml index 4437682d..aa76f118 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -179,7 +179,7 @@ codegen-units = 256 cpp_demangle = {version = "0.5", optional = true} crc32fast = "1.3" flate2 = {version = "1.0.31", default-features = false, features = ["zlib-rs"], optional = true} -gimli = {version = "0.33", optional = true} +gimli = {version = "0.34", optional = true} libc = "0.2" memmap2 = {version = "0.9", default-features = false} nom = {version = "7", optional = true}