summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyleMiles <krm504@nyu.edu>2022-04-11 15:48:53 -0400
committerKyleMiles <krm504@nyu.edu>2022-04-12 10:34:11 -0400
commit70229f1a48db5dc11590dbd74bba5b341e9878ac (patch)
tree1a4ea253758da02a691d0930d4ac127815e3932a
parent9c6be1b6e18c0f8c75e1eb5911ce1206e1a1d7b5 (diff)
Update cargo from stable-2021-06-17 -> stable-2021-04-07
-rw-r--r--CMakeLists.txt6
-rw-r--r--rust/README.md2
2 files changed, 4 insertions, 4 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 029c53c2..20f6dd38 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -5,7 +5,7 @@ list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
option(BN_API_BUILD_EXAMPLES "Builds example plugins" OFF)
-set(CARGO_API_VERSION stable-2021-06-17)
+set(CARGO_API_VERSION stable-2022-04-07)
if(NOT CMAKE_SIZEOF_VOID_P EQUAL 8)
if (MSVC)
@@ -50,7 +50,7 @@ if(NOT HEADLESS)
target_link_libraries(binaryninjaui INTERFACE ${BinaryNinjaUI_LIBRARIES})
target_link_directories(binaryninjaui INTERFACE ${BinaryNinjaUI_LIBRARY_DIRS})
target_compile_definitions(binaryninjaui INTERFACE ${BinaryNinjaUI_DEFINITIONS})
-
+
# UI headers are in here
target_include_directories(binaryninjaui INTERFACE ${PROJECT_SOURCE_DIR}/ui)
else()
@@ -71,7 +71,7 @@ function(bn_install_plugin target)
get_target_property(BN_API_SOURCE_DIR binaryninjaapi SOURCE_DIR)
message(STATUS "${BN_API_SOURCE_DIR}")
list(APPEND CMAKE_MODULE_PATH "${BN_API_SOURCE_DIR}/cmake")
-
+
# BinaryNinjaCore has the user plugins dir define that we want
find_package(BinaryNinjaCore REQUIRED)
if(WIN32)
diff --git a/rust/README.md b/rust/README.md
index 713f71c0..15f00e80 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 `stable-2021-06-17`
+> :warning: This project runs on Rust version `stable-2022-04-07`
## Dependencies