diff options
| -rw-r--r-- | Cargo.lock | 16 | ||||
| -rw-r--r-- | plugins/warp/Cargo.toml | 2 |
2 files changed, 15 insertions, 3 deletions
@@ -2549,6 +2549,18 @@ dependencies = [ ] [[package]] +name = "warp" +version = "1.0.1" +source = "git+https://github.com/Vector35/warp/?tag=1.0.1#c9cfe5b7a07acaccb0d9b294c0ac68741c559e94" +dependencies = [ + "bon", + "flatbuffers", + "flate2", + "itertools 0.14.0", + "uuid", +] + +[[package]] name = "warp_headless" version = "0.1.0" dependencies = [ @@ -2589,7 +2601,7 @@ dependencies = [ "thiserror 2.0.12", "uuid", "walkdir", - "warp", + "warp 1.0.1", ] [[package]] @@ -2619,7 +2631,7 @@ dependencies = [ "thiserror 2.0.12", "uuid", "walkdir", - "warp", + "warp 1.0.0", ] [[package]] diff --git a/plugins/warp/Cargo.toml b/plugins/warp/Cargo.toml index 7a7df157..59f1e607 100644 --- a/plugins/warp/Cargo.toml +++ b/plugins/warp/Cargo.toml @@ -13,7 +13,7 @@ demo = [] [dependencies] binaryninja = { workspace = true, features = ["rayon"] } binaryninjacore-sys.workspace = true -warp = { git = "https://github.com/Vector35/warp/", tag = "1.0.0" } +warp = { git = "https://github.com/Vector35/warp/", tag = "1.0.1" } log = "0.4" itertools = "0.14.0" dashmap = { version = "6.1", features = ["rayon"]} |
