diff --git a/Cargo.lock b/Cargo.lock index d5a0376e..baf1c77d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1246,6 +1246,17 @@ dependencies = [ "stable_deref_trait", ] +[[package]] +name = "gimli" +version = "0.32.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cd54e8795d97c9f5561c63529d98fcc0c2eed9e982deecc396797f2c04cff298" +dependencies = [ + "fallible-iterator", + "indexmap", + "stable_deref_trait", +] + [[package]] name = "h2" version = "0.4.11" @@ -2585,7 +2596,7 @@ dependencies = [ "dirs", "env_logger 0.11.8", "futures", - "gimli 0.31.1", + "gimli 0.32.1", "indicatif", "log", "num_cpus", diff --git a/Cargo.toml b/Cargo.toml index 0a8a0e2e..1422cc0c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -34,7 +34,7 @@ cranelift-module = "0.121" cranelift-jit = "0.121" cranelift-native = "0.121" # Debug symbol support -gimli = { version = "0.31", features = ["write"] } +gimli = { version = "0.32", features = ["write"] } target-lexicon = "0.12" rand = "0.8" toml = "0.9"