diff --git a/Cargo.lock b/Cargo.lock index 24856265..aa8606fd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -178,9 +178,9 @@ checksum = "5f677be708300866a6ec8ead0c71da49551867dece3fda611113cc52413fd699" [[package]] name = "gimli" -version = "0.27.2" +version = "0.27.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ad0a93d233ebf96623465aad4046a8d3aa4da22d4f4beba5388838c8a434bbb4" +checksum = "b6c80984affa11d98d1b88b66ac8853f143217b399d3c74116778ff8fdb4ed2e" dependencies = [ "fallible-iterator", "stable_deref_trait", diff --git a/parser/Cargo.toml b/parser/Cargo.toml index 52ed37a6..ccefe525 100644 --- a/parser/Cargo.toml +++ b/parser/Cargo.toml @@ -15,7 +15,7 @@ path = "./parser.rs" [dependencies] anyhow = "1.0" fallible-iterator = { version = "0.2.0", optional = true } -gimli = { version = "0.27.2", optional = true, default-features = false, features = ["std", "read"] } +gimli = { version = "0.27.3", optional = true, default-features = false, features = ["std", "read"] } object = { version = "0.17.0", optional = true } wasmparser = "0.80.0" typed-arena = { version = "2.0.2", optional = true } diff --git a/traits/Cargo.toml b/traits/Cargo.toml index c5c52d4a..ebfac7eb 100644 --- a/traits/Cargo.toml +++ b/traits/Cargo.toml @@ -15,7 +15,7 @@ path = "./traits.rs" [dependencies] thiserror = "1.0" anyhow = "1.0" -gimli = { version = "0.27.2", optional = true, default-features = false, features = ["std", "read"] } +gimli = { version = "0.27.3", optional = true, default-features = false, features = ["std", "read"] } wasmparser = "0.80.0" twiggy-ir = { version = "=0.7.0", path = "../ir" } csv = "1.2.2"