summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorunknowntrojan <14975032+unknowntrojan@users.noreply.github.com>2023-06-15 12:41:51 +0200
committerunknowntrojan <14975032+unknowntrojan@users.noreply.github.com>2023-06-15 12:41:51 +0200
commit8d8a9a0917b2476b3bb1f8b795c36b99a272e023 (patch)
tree062feb32ab83ce4c933450aa6118582af941cf74 /Cargo.toml
parent8faf22a2bad42e9816d496f27d64cdfc0ce1ddf0 (diff)
fixed signature creation not working on macos, improve quality
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml17
1 files changed, 9 insertions, 8 deletions
diff --git a/Cargo.toml b/Cargo.toml
index ed8aad6..8508cd2 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "binja_coolsigmaker"
-version = "0.1.1"
+version = "0.1.2"
authors = ["unknowntrojan"]
edition = "2021"
@@ -10,12 +10,13 @@ crate-type = ["cdylib"]
[dependencies]
log = "0.4.17"
clipboard = "0.5.0"
+# binaryninja = { path = "../binaryninja-api/rust" }
# Dev
-# binaryninja = { git = "https://github.com/Vector35/binaryninja-api.git", branch = "dev" }
+binaryninja = { git = "https://github.com/Vector35/binaryninja-api.git", branch = "dev" }
# Stable
-binaryninja = { git = "https://github.com/Vector35/binaryninja-api.git", tag = "v3.4.4271-stable" }
-rayon = "1.7.0"
-iced-x86 = "1.17.0"
-strum = { version = "0.24.1", features = ["derive"] }
-serde = { version = "1.0.152", features = ["std"] }
-serde_json = "1.0.93"
+# binaryninja = { git = "https://github.com/Vector35/binaryninja-api.git", tag = "v3.4.4271-stable" }
+rayon = "1.7.0"
+iced-x86 = "1.17.0"
+strum = { version = "0.24.1", features = ["derive"] }
+serde = { version = "1.0.152", features = ["std"] }
+serde_json = "1.0.93"