diff options
| author | Mason Reed <mason@vector35.com> | 2024-11-11 14:30:03 -0500 |
|---|---|---|
| committer | Mason Reed <mason@vector35.com> | 2024-11-11 14:31:53 -0500 |
| commit | d7a35743ae442e5ae3cc4f98aff78fb04d81b337 (patch) | |
| tree | 2c90c745d5e7129be8e4d0c6e64dfe74d5965f5d /plugins | |
| parent | 1e4058972548e54fe5d3f666a7e002c243482516 (diff) | |
WARP: Bump warp dependency
Diffstat (limited to 'plugins')
| -rw-r--r-- | plugins/warp/Cargo.toml | 2 | ||||
| -rw-r--r-- | plugins/warp/src/matcher.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/warp/Cargo.toml b/plugins/warp/Cargo.toml index 098f4208..2d17ecae 100644 --- a/plugins/warp/Cargo.toml +++ b/plugins/warp/Cargo.toml @@ -9,7 +9,7 @@ crate-type = ["lib", "cdylib"] [dependencies] binaryninja = { path = "../../rust", features = ["rayon"] } binaryninjacore-sys = { path = "../../rust/binaryninjacore-sys" } -warp = { git = "https://github.com/Vector35/warp/", rev = "b4d59ec" } +warp = { git = "https://github.com/Vector35/warp/", rev = "b54768f" } log = "0.4" arboard = "3.4" rayon = "1.10" diff --git a/plugins/warp/src/matcher.rs b/plugins/warp/src/matcher.rs index 2d4ae753..4dfc3e35 100644 --- a/plugins/warp/src/matcher.rs +++ b/plugins/warp/src/matcher.rs @@ -79,7 +79,7 @@ impl Matcher { let user_data = get_data_from_dir(&plat_user_sig_dir); data.extend(user_data); - let merged_data = Data::merge(&data.values().cloned().collect::<Vec<_>>()); + let merged_data = Data::merge(data.values().cloned().collect::<Vec<_>>()); log::debug!("Loaded signatures: {:?}", data.keys()); Matcher::from_data(merged_data) } |
