From d651c59bd6e53e7f2ef059fb17582df028f3dd1e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Feb 2025 23:56:21 +0000 Subject: [PATCH] build(deps): bump blake3 from 1.5.1 to 1.6.0 Bumps [blake3](https://github.com/BLAKE3-team/BLAKE3) from 1.5.1 to 1.6.0. - [Release notes](https://github.com/BLAKE3-team/BLAKE3/releases) - [Commits](https://github.com/BLAKE3-team/BLAKE3/compare/1.5.1...1.6.0) --- updated-dependencies: - dependency-name: blake3 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 36 ++++++++++++++++++++++++++---------- server/index-node/Cargo.toml | 2 +- store/postgres/Cargo.toml | 2 +- 3 files changed, 28 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b2ae24e0169..c8fa43bef72 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -569,15 +569,16 @@ dependencies = [ [[package]] name = "blake3" -version = "1.5.1" +version = "1.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "30cca6d3674597c30ddf2c587bf8d9d65c9a84d2326d941cc79c9842dfe0ef52" +checksum = "1230237285e3e10cde447185e8975408ae24deaa67205ce684805c25bc0c7937" dependencies = [ "arrayref", "arrayvec 0.7.4", "cc", "cfg-if 1.0.0", - "constant_time_eq 0.3.0", + "constant_time_eq 0.3.1", + "memmap2", ] [[package]] @@ -652,13 +653,13 @@ dependencies = [ [[package]] name = "cc" -version = "1.0.105" +version = "1.2.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5208975e568d83b6b05cc0a063c8e7e9acc2b43bee6da15616a5b73e109d7437" +checksum = "0c3d1b2e905a3a7b00a6141adb0e4c0bb941d11caf55349d863942a1cc44e3c9" dependencies = [ "jobserver", "libc", - "once_cell", + "shlex", ] [[package]] @@ -783,9 +784,9 @@ checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc" [[package]] name = "constant_time_eq" -version = "0.3.0" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f7144d30dcf0fafbce74250a3963025d8d52177934239851c917d29f1df280c2" +checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6" [[package]] name = "convert_case" @@ -2093,7 +2094,7 @@ dependencies = [ name = "graph-server-index-node" version = "0.36.0" dependencies = [ - "blake3 1.5.1", + "blake3 1.6.0", "git-testament", "graph", "graph-chain-arweave", @@ -2138,7 +2139,7 @@ dependencies = [ "Inflector", "anyhow", "async-trait", - "blake3 1.5.1", + "blake3 1.6.0", "chrono", "clap", "derive_more", @@ -3070,6 +3071,15 @@ dependencies = [ "rustix", ] +[[package]] +name = "memmap2" +version = "0.9.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fd3f7eed9d3848f8b98834af67102b720745c4ec028fcd0aa0239277e7de374f" +dependencies = [ + "libc", +] + [[package]] name = "memoffset" version = "0.9.1" @@ -4572,6 +4582,12 @@ dependencies = [ "dirs", ] +[[package]] +name = "shlex" +version = "1.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" + [[package]] name = "signal-hook-registry" version = "1.4.2" diff --git a/server/index-node/Cargo.toml b/server/index-node/Cargo.toml index edc438d1279..74048cc5e0a 100644 --- a/server/index-node/Cargo.toml +++ b/server/index-node/Cargo.toml @@ -4,7 +4,7 @@ version.workspace = true edition.workspace = true [dependencies] -blake3 = "1.5" +blake3 = "1.6" graph = { path = "../../graph" } graph-graphql = { path = "../../graphql" } graph-chain-arweave = { path = "../../chain/arweave" } diff --git a/store/postgres/Cargo.toml b/store/postgres/Cargo.toml index fa9ea5a20c5..f500cb991ee 100644 --- a/store/postgres/Cargo.toml +++ b/store/postgres/Cargo.toml @@ -5,7 +5,7 @@ edition.workspace = true [dependencies] async-trait = "0.1.50" -blake3 = "1.5" +blake3 = "1.6" chrono = { workspace = true } derive_more = { version = "0.99.18" } diesel = { workspace = true }