Skip to content

Commit 095f86d

Browse files
committed
Bump supported rust version to 1.83.0
1 parent 042b43f commit 095f86d

File tree

15 files changed

+49
-230
lines changed

15 files changed

+49
-230
lines changed

.github/workflows/rust.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Install Rust
2525
uses: actions-rs/toolchain@v1
2626
with:
27-
toolchain: 1.77.0
27+
toolchain: 1.83.0
2828
profile: minimal
2929
override: true
3030
components: clippy

arch/msp430/Cargo.lock

Lines changed: 8 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

arch/riscv/Cargo.lock

Lines changed: 8 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

plugins/warp/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ if(NOT BN_API_BUILD_EXAMPLES AND NOT BN_INTERNAL_BUILD)
1313
REQUIRED
1414
)
1515
endif()
16-
set(CARGO_STABLE_VERSION 1.77.0)
16+
set(CARGO_STABLE_VERSION 1.83.0)
1717
add_subdirectory(${BN_API_PATH} binaryninjaapi)
1818
endif()
1919

plugins/warp/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Duplicate functions will be removed to save space, any input will always produce
1515
> Assuming you have the following:
1616
> - A compatible Binary Ninja with headless usage (see [this documentation](https://docs.binary.ninja/dev/batch.html#batch-processing-and-other-automation-tips) for more information)
1717
> - Clang
18-
> - Rust (currently tested for 1.77.0)
18+
> - Rust (currently tested for 1.83.0)
1919
> - Set `DEP_BINARYNINJACORE_PATH` env variable to your install directory (see [here](https://docs.binary.ninja/guide/#binary-path) for more details)
2020
2121
1. Clone this repository (`git clone https://github.com/Vector35/binaryninja-api/tree/dev`)

rust/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.13 FATAL_ERROR)
22

33
project(rust_api)
44

5-
set(CARGO_API_VERSION 1.77.0)
5+
set(CARGO_API_VERSION 1.83.0)
66

77
file(GLOB RUST_API_SOURCES CONFIGURE_DEPENDS
88
../binaryninjacore.h

0 commit comments

Comments
 (0)