diff options
| -rw-r--r-- | rust/Cargo.lock | 20 | ||||
| -rw-r--r-- | rust/examples/idb_import/Cargo.toml | 2 |
2 files changed, 16 insertions, 6 deletions
diff --git a/rust/Cargo.lock b/rust/Cargo.lock index 7a1284ef..3f98dda6 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -159,7 +159,7 @@ dependencies = [ "bitflags", "cexpr", "clang-sys", - "itertools", + "itertools 0.11.0", "log", "prettyplease", "proc-macro2", @@ -513,13 +513,14 @@ dependencies = [ [[package]] name = "idb-rs" -version = "0.1.5" -source = "git+https://github.com/Vector35/idb-rs#ce6a16395970d21eceea61a3105ea7a5f718cc53" +version = "0.1.6" +source = "git+https://github.com/Vector35/idb-rs#1c79c0e80688751119e1067876c38f2d26b84706" dependencies = [ "anyhow", "bincode", "clap", "flate2", + "itertools 0.13.0", "serde", ] @@ -559,6 +560,15 @@ dependencies = [ ] [[package]] +name = "itertools" +version = "0.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186" +dependencies = [ + "either", +] + +[[package]] name = "itoa" version = "1.0.10" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -776,7 +786,7 @@ dependencies = [ "binaryninja", "cab", "home", - "itertools", + "itertools 0.11.0", "log", "pdb", "regex", @@ -790,7 +800,7 @@ dependencies = [ "binaryninja", "cab", "home", - "itertools", + "itertools 0.11.0", "log", "pdb", "regex", diff --git a/rust/examples/idb_import/Cargo.toml b/rust/examples/idb_import/Cargo.toml index 4e6acbad..6845d8d2 100644 --- a/rust/examples/idb_import/Cargo.toml +++ b/rust/examples/idb_import/Cargo.toml @@ -10,5 +10,5 @@ crate-type = ["cdylib"] [dependencies] anyhow = { version = "1.0.86", features = ["backtrace"] } binaryninja = { path = "../../" } -idb-rs = { git = "https://github.com/Vector35/idb-rs", version = "0.1.5" } +idb-rs = { git = "https://github.com/Vector35/idb-rs", version = "0.1.6" } log = "0.4.20" |
