blob: 32601b1a6a160605333d86de7b773dd9a0de016b (
plain)
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
|
[package]
name = "binja_coolsigmaker"
version = "0.1.6"
authors = ["unknowntrojan"]
edition = "2024"
[lib]
crate-type = ["cdylib"]
[dependencies]
# Local Development
# binaryninja = { path = "../binaryninja-api/rust" }
clipboard = "0.5"
rayon = "1.11"
iced-x86 = "1.17.0"
strum = { version = "0.27", features = ["derive"] }
serde = { version = "1", features = ["std"] }
serde_json = "1"
thiserror = "2 "
coolfindpattern = "0.1.7"
binary-search = "0.1.3"
# Dev
binaryninja = { git = "https://github.com/Vector35/binaryninja-api", branch = "dev" }
tracing = "0.1.44"
# Stable
# binaryninja = { git = "https://github.com/Vector35/binaryninja-api", tag = "stable/5.1.8104" }
|