diff options
| author | unknowntrojan <14975032+unknowntrojan@users.noreply.github.com> | 2023-07-11 19:24:46 +0200 |
|---|---|---|
| committer | unknowntrojan <14975032+unknowntrojan@users.noreply.github.com> | 2023-07-11 19:24:46 +0200 |
| commit | 026f1d49f8e07d6bc18fc336acd29af1bf9f1c34 (patch) | |
| tree | 866d25807392c05e14e4e1e63eb982f1f615402f /Cargo.toml | |
| parent | a3d59c937925a70fcbd928cb727f4f69713624e6 (diff) | |
reduce unsafe usage, some refactoring, use SIMD pattern search
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 17 |
1 files changed, 10 insertions, 7 deletions
@@ -10,13 +10,16 @@ crate-type = ["cdylib"] [dependencies] log = "0.4.17" clipboard = "0.5.0" +# Local # 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.25.0", features = ["derive"] } +serde = { version = "1.0.152", features = ["std"] } +serde_json = "1.0.93" +thiserror = "1.0.43" +coolfindpattern = "0.1.3" |
