summaryrefslogtreecommitdiff
path: root/rust
diff options
context:
space:
mode:
authorRusty Wagner <rusty.wagner@gmail.com>2024-03-21 20:30:39 -0400
committerRusty Wagner <rusty.wagner@gmail.com>2024-03-21 21:21:19 -0400
commit3788c92d968f5522323b8e6d5c6cf614dd4b021a (patch)
tree73017c14093ab290e60654fe72db80af6109118f /rust
parent2ded29f1b32842611b7e7751d14ab5533cc7cb19 (diff)
Update to Rust 1.77
Diffstat (limited to 'rust')
-rw-r--r--rust/CMakeLists.txt2
-rw-r--r--rust/Cargo.toml3
-rw-r--r--rust/README.md2
-rw-r--r--rust/src/lib.rs2
4 files changed, 6 insertions, 3 deletions
diff --git a/rust/CMakeLists.txt b/rust/CMakeLists.txt
index e17a3ac0..92c6926e 100644
--- a/rust/CMakeLists.txt
+++ b/rust/CMakeLists.txt
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.13 FATAL_ERROR)
project(rust_api)
-set(CARGO_API_VERSION 1.76.0)
+set(CARGO_API_VERSION 1.77.0)
file(GLOB RUST_API_SOURCES CONFIGURE_DEPENDS
../binaryninjacore.h
diff --git a/rust/Cargo.toml b/rust/Cargo.toml
index 02efc79b..8e174e68 100644
--- a/rust/Cargo.toml
+++ b/rust/Cargo.toml
@@ -30,3 +30,6 @@ members = [
"examples/hlil_lifter",
"examples/template"
]
+
+[profile.release]
+debug = 1
diff --git a/rust/README.md b/rust/README.md
index b6016a62..8a037f65 100644
--- a/rust/README.md
+++ b/rust/README.md
@@ -4,7 +4,7 @@
> :warning: **These bindings are in a very early beta, only have partial support for the core APIs and are still actively under development. Compatibility _will_ break and conventions _will_ change! They are being used for core Binary Ninja features however, so we expect much of what is already there to be reliable enough to build on, just don't be surprised if your plugins/scripts need to hit a moving target.**
-> :warning: This project runs on Rust version `1.76.0`
+> :warning: This project runs on Rust version `1.77.0`
## Contributing
diff --git a/rust/src/lib.rs b/rust/src/lib.rs
index 11021bd7..0d385746 100644
--- a/rust/src/lib.rs
+++ b/rust/src/lib.rs
@@ -35,7 +35,7 @@
//!
//! > ⚠️ **These bindings are in a very early beta, only have partial support for the core APIs and are still actively under development. Compatibility _will_ break and conventions _will_ change! They are being used for core Binary Ninja features however, so we expect much of what is already there to be reliable enough to build on, just don't be surprised if your plugins/scripts need to hit a moving target.**
//!
-//! > ⚠️ This project runs on Rust version `1.76.0`
+//! > ⚠️ This project runs on Rust version `1.77.0`
//!
//! ---
//!