summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMason Reed <mason@vector35.com>2025-01-25 17:56:29 -0500
committerMason Reed <mason@vector35.com>2025-01-25 17:56:29 -0500
commit9fad830755f7f1675237541aa5dc363071cf65a3 (patch)
tree22890e2bac33c8b3eb74463dac9ce377eaff7879
parent0feeaf5e71ec8660d40ffff2d06e39d9f4b5dd0a (diff)
Bump `thiserror` and `itertools`
-rw-r--r--Cargo.lock14
-rw-r--r--plugins/dwarf/shared/Cargo.toml2
-rw-r--r--plugins/pdb-ng/Cargo.toml2
-rw-r--r--plugins/pdb-ng/demo/Cargo.toml2
4 files changed, 10 insertions, 10 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 804e9193..4ffbf5ef 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -920,7 +920,7 @@ dependencies = [
"binaryninja",
"binaryninjacore-sys",
"gimli",
- "thiserror 1.0.69",
+ "thiserror 2.0.11",
"zstd",
]
@@ -1538,18 +1538,18 @@ dependencies = [
[[package]]
name = "itertools"
-version = "0.11.0"
+version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
+checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
dependencies = [
"either",
]
[[package]]
name = "itertools"
-version = "0.13.0"
+version = "0.14.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
+checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
dependencies = [
"either",
]
@@ -1966,7 +1966,7 @@ dependencies = [
"anyhow",
"binaryninja",
"binaryninjacore-sys",
- "itertools 0.11.0",
+ "itertools 0.14.0",
"log",
"pdb",
"regex",
@@ -1979,7 +1979,7 @@ dependencies = [
"anyhow",
"binaryninja",
"binaryninjacore-sys",
- "itertools 0.11.0",
+ "itertools 0.14.0",
"log",
"pdb",
"regex",
diff --git a/plugins/dwarf/shared/Cargo.toml b/plugins/dwarf/shared/Cargo.toml
index 93ed004d..2e2ee51e 100644
--- a/plugins/dwarf/shared/Cargo.toml
+++ b/plugins/dwarf/shared/Cargo.toml
@@ -9,4 +9,4 @@ binaryninja.workspace = true
binaryninjacore-sys.workspace = true
gimli = "0.31"
zstd = "0.13.2"
-thiserror = "1.0"
+thiserror = "2.0"
diff --git a/plugins/pdb-ng/Cargo.toml b/plugins/pdb-ng/Cargo.toml
index 2025de13..d431fd64 100644
--- a/plugins/pdb-ng/Cargo.toml
+++ b/plugins/pdb-ng/Cargo.toml
@@ -10,7 +10,7 @@ crate-type = ["cdylib"]
anyhow = "^1.0"
binaryninja.workspace = true
binaryninjacore-sys.workspace = true
-itertools = "^0.11"
+itertools = "0.14"
log = "0.4"
pdb = { git = "https://github.com/Vector35/pdb-rs", rev = "6016177" }
regex = "1"
diff --git a/plugins/pdb-ng/demo/Cargo.toml b/plugins/pdb-ng/demo/Cargo.toml
index 3a36023f..02a645d0 100644
--- a/plugins/pdb-ng/demo/Cargo.toml
+++ b/plugins/pdb-ng/demo/Cargo.toml
@@ -11,7 +11,7 @@ path = "../src/lib.rs"
anyhow = "^1.0"
binaryninja = { workspace = true, features = ["demo"]}
binaryninjacore-sys.workspace = true
-itertools = "^0.11"
+itertools = "0.14"
log = "0.4"
pdb = { git = "https://github.com/Vector35/pdb-rs", rev = "6016177" }
regex = "1"