From 51e65bede743945d7f2fc0cbb7ff1a9da787710e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 23 May 2023 08:57:35 +0000 Subject: [PATCH] Bump fallible-iterator from 0.2.0 to 0.3.0 Bumps [fallible-iterator](https://github.com/sfackler/rust-fallible-iterator) from 0.2.0 to 0.3.0. - [Release notes](https://github.com/sfackler/rust-fallible-iterator/releases) - [Changelog](https://github.com/sfackler/rust-fallible-iterator/blob/master/CHANGELOG.md) - [Commits](https://github.com/sfackler/rust-fallible-iterator/commits) --- updated-dependencies: - dependency-name: fallible-iterator dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 10 ++++++++-- parser/Cargo.toml | 2 +- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 05c55023..23d2f5a1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -154,6 +154,12 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7" +[[package]] +name = "fallible-iterator" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649" + [[package]] name = "fixedbitset" version = "0.4.1" @@ -182,7 +188,7 @@ version = "0.27.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ad0a93d233ebf96623465aad4046a8d3aa4da22d4f4beba5388838c8a434bbb4" dependencies = [ - "fallible-iterator", + "fallible-iterator 0.2.0", "stable_deref_trait", ] @@ -596,7 +602,7 @@ name = "twiggy-parser" version = "0.7.0" dependencies = [ "anyhow", - "fallible-iterator", + "fallible-iterator 0.3.0", "gimli", "object", "twiggy-ir", diff --git a/parser/Cargo.toml b/parser/Cargo.toml index 52ed37a6..6a5aa6a9 100644 --- a/parser/Cargo.toml +++ b/parser/Cargo.toml @@ -14,7 +14,7 @@ path = "./parser.rs" [dependencies] anyhow = "1.0" -fallible-iterator = { version = "0.2.0", optional = true } +fallible-iterator = { version = "0.3.0", optional = true } gimli = { version = "0.27.2", optional = true, default-features = false, features = ["std", "read"] } object = { version = "0.17.0", optional = true } wasmparser = "0.80.0"