summaryrefslogtreecommitdiff
path: root/rust/examples
diff options
context:
space:
mode:
authorRusty Wagner <rusty.wagner@gmail.com>2024-03-14 13:48:38 -0400
committerRusty Wagner <rusty.wagner@gmail.com>2024-03-14 22:22:59 -0400
commit2bff146870679690be54f00f9299ad7b521bab57 (patch)
treea5b80d343b194fdd2e7cb075f4441fe3fbd24d57 /rust/examples
parent6e04c943e75ebdfbc6e940d0aa3d88a54b4c264b (diff)
Update to Rust 1.76
Diffstat (limited to 'rust/examples')
-rw-r--r--rust/examples/decompile/Cargo.toml2
-rw-r--r--rust/examples/dwarf/dwarf_export/Cargo.toml4
-rw-r--r--rust/examples/dwarf/dwarf_import/Cargo.toml4
-rw-r--r--rust/examples/dwarf/dwarfdump/Cargo.toml2
-rw-r--r--rust/examples/dwarf/shared/Cargo.toml2
-rw-r--r--rust/examples/minidump/Cargo.toml5
6 files changed, 9 insertions, 10 deletions
diff --git a/rust/examples/decompile/Cargo.toml b/rust/examples/decompile/Cargo.toml
index 3c3cbb3e..09c510f6 100644
--- a/rust/examples/decompile/Cargo.toml
+++ b/rust/examples/decompile/Cargo.toml
@@ -6,5 +6,5 @@ edition = "2021"
[dependencies]
binaryninja = {path="../../"}
-clap = { version = "4.3", features = ["derive"] }
+clap = { version = "4.4", features = ["derive"] }
diff --git a/rust/examples/dwarf/dwarf_export/Cargo.toml b/rust/examples/dwarf/dwarf_export/Cargo.toml
index 022d3e00..5f537c69 100644
--- a/rust/examples/dwarf/dwarf_export/Cargo.toml
+++ b/rust/examples/dwarf/dwarf_export/Cargo.toml
@@ -8,6 +8,6 @@ crate-type = ["cdylib"]
[dependencies]
binaryninja = {path="../../../"}
-gimli = "^0.27"
+gimli = "^0.28"
log = "^0.4"
-object = { version = "0.30.3", features = ["write"] }
+object = { version = "0.32.1", features = ["write"] }
diff --git a/rust/examples/dwarf/dwarf_import/Cargo.toml b/rust/examples/dwarf/dwarf_import/Cargo.toml
index 07605991..c8cea44a 100644
--- a/rust/examples/dwarf/dwarf_import/Cargo.toml
+++ b/rust/examples/dwarf/dwarf_import/Cargo.toml
@@ -10,5 +10,5 @@ crate-type = ["cdylib"]
[dependencies]
dwarfreader = { path = "../shared/" }
binaryninja = { path = "../../../" }
-gimli = "0.27"
-log = "0.4.17"
+gimli = "0.28"
+log = "0.4.20"
diff --git a/rust/examples/dwarf/dwarfdump/Cargo.toml b/rust/examples/dwarf/dwarfdump/Cargo.toml
index 1d3411a0..0ede6afb 100644
--- a/rust/examples/dwarf/dwarfdump/Cargo.toml
+++ b/rust/examples/dwarf/dwarfdump/Cargo.toml
@@ -10,4 +10,4 @@ crate-type = ["cdylib"]
[dependencies]
dwarfreader = { path = "../shared/" }
binaryninja = {path="../../../"}
-gimli = "0.27"
+gimli = "0.28"
diff --git a/rust/examples/dwarf/shared/Cargo.toml b/rust/examples/dwarf/shared/Cargo.toml
index 9cbd5a22..521a705e 100644
--- a/rust/examples/dwarf/shared/Cargo.toml
+++ b/rust/examples/dwarf/shared/Cargo.toml
@@ -6,4 +6,4 @@ edition = "2021"
[dependencies]
binaryninja = {path="../../../"}
-gimli = "0.27"
+gimli = "0.28"
diff --git a/rust/examples/minidump/Cargo.toml b/rust/examples/minidump/Cargo.toml
index b002271d..3e54fd6c 100644
--- a/rust/examples/minidump/Cargo.toml
+++ b/rust/examples/minidump/Cargo.toml
@@ -8,6 +8,5 @@ crate-type = ["cdylib"]
[dependencies]
binaryninja = {path="../../"}
-log = "0.4.17"
-minidump = "0.15.2"
-time = "=0.3.16" # Remove this when we update from stable-2022-12-15 - it's pinning a dependency that requires a more recent version of rustc
+log = "0.4.20"
+minidump = "0.18.0"