From e18c5f05247c8393dcb16cb92f38bccb7e2b9d3f Mon Sep 17 00:00:00 2001 From: Vincent Thiberville Date: Sun, 20 Aug 2023 12:29:31 +0200 Subject: [PATCH] chore: update dependencies with minor or major versions Nothing of note --- Cargo.lock | 14 +++++++------- boreal-cli/Cargo.toml | 2 +- boreal/Cargo.toml | 4 ++-- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6b0341a8..f52086b6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -129,9 +129,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" [[package]] name = "bitflags" -version = "2.3.3" +version = "2.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "630be753d4e58660abd17930c71b647fe46c27ea6b63cc59e1e3851406972e42" +checksum = "b4682ae6287fcf752ecaabbfcc7b6f9b72aa33933dc23a554d853aea8eea8635" [[package]] name = "bitmaps" @@ -678,7 +678,7 @@ version = "0.38.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "19ed4fa021d81c8392ce04db050a3da9a60299050b7ae1cf482d862b54a7218f" dependencies = [ - "bitflags 2.3.3", + "bitflags 2.4.0", "errno", "libc", "linux-raw-sys", @@ -758,9 +758,9 @@ dependencies = [ [[package]] name = "tempfile" -version = "3.7.0" +version = "3.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5486094ee78b2e5038a6382ed7645bc084dc2ec433426ca4c3cb61e2007b8998" +checksum = "cb94d2f3cc536af71caac6b6fcebf65860b347e7ce0cc9ebe8f70d3e521054ef" dependencies = [ "cfg-if", "fastrand", @@ -816,9 +816,9 @@ dependencies = [ [[package]] name = "tlsh2" -version = "0.2.1" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "40030031152b5dc65fb4c2827ab747e677fb1ad875c2313633ba30b6b127d1b6" +checksum = "4129d6a6df564c304c4cac21364cd3fb38a30466f39352518e4e4e82b1d301ab" [[package]] name = "typenum" diff --git a/boreal-cli/Cargo.toml b/boreal-cli/Cargo.toml index bec704e6..e34b07fa 100644 --- a/boreal-cli/Cargo.toml +++ b/boreal-cli/Cargo.toml @@ -43,5 +43,5 @@ walkdir = "2.3" [dev-dependencies] # Testing for the CLI assert_cmd = "2.0" -tempfile = "3.6" +tempfile = "3.8" predicates = { version = "3.0", default-features = false, features = ["regex"] } diff --git a/boreal/Cargo.toml b/boreal/Cargo.toml index b5f2e01a..7ba5c19f 100644 --- a/boreal/Cargo.toml +++ b/boreal/Cargo.toml @@ -54,7 +54,7 @@ hex = { version = "0.4", optional = true } md-5 = { version = "0.10", optional = true } sha1 = { version = "0.10", optional = true } sha2 = { version = "0.10", optional = true } -tlsh2 = { version = "0.2", optional = true } +tlsh2 = { version = "0.3", optional = true } # "object" feature object = { version = "0.31", optional = true, default-features = false, features = ["read"] } @@ -65,7 +65,7 @@ authenticode-parser = { version = "0.3", optional = true } [dev-dependencies] base64 = "0.21" glob = "0.3.1" -tempfile = "3.7" +tempfile = "3.8" yara = { version = "0.19", features = ["vendored"] } # Only needed in tests because Mutex::new is not const