-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
30 lines (25 loc) · 819 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[package]
name = "binja_coolsigmaker"
version = "0.1.6"
authors = ["unknowntrojan"]
edition = "2021"
[lib]
crate-type = ["cdylib"]
[dependencies]
# Local Development
# binaryninja = { path = "../binaryninja-api/rust" }
log = "0.4.17"
clipboard = "0.5.0"
rayon = "1.7.0"
iced-x86 = "1.17.0"
strum = { version = "0.26.1", features = ["derive"] }
serde = { version = "1.0.152", features = ["std"] }
serde_json = "1.0.93"
thiserror = "1.0.43"
coolfindpattern = "0.1.6"
binary-search = "0.1.2"
# Due to a breaking change in the binaryninja crate, you will also need to uncomment the relevant portion of code in the entrypoint.
# Dev
# binaryninja = { git = "https://github.com/Vector35/binaryninja-api", branch = "dev" }
# Stable
binaryninja = { git = "https://github.com/Vector35/binaryninja-api", branch = "master" }