From 4018e5a90cec387dc58437349f98f1d16ada28c5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 23 Aug 2023 22:24:50 +0000 Subject: [PATCH] chore(deps): bump siphasher from 0.3.10 to 1.0.0 Bumps [siphasher](https://github.com/jedisct1/rust-siphash) from 0.3.10 to 1.0.0. - [Commits](https://github.com/jedisct1/rust-siphash/compare/0.3.10...1.0.0) --- updated-dependencies: - dependency-name: siphasher dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- mc-oblivious-map/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 155eb16..0f3ce1f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -631,9 +631,9 @@ dependencies = [ [[package]] name = "siphasher" -version = "0.3.10" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de" +checksum = "54ac45299ccbd390721be55b412d41931911f654fa99e2cb8bfb57184b2061fe" [[package]] name = "subtle" diff --git a/mc-oblivious-map/Cargo.toml b/mc-oblivious-map/Cargo.toml index df8ecdd..903ebd1 100644 --- a/mc-oblivious-map/Cargo.toml +++ b/mc-oblivious-map/Cargo.toml @@ -21,7 +21,7 @@ mc-oblivious-traits = { path = "../mc-oblivious-traits", version = "2.3" } #third party generic-array = { version = "0.14", default-features = false } rand_core = { version = "0.6", default-features = false } -siphasher = "0.3" +siphasher = "1.0" [dev-dependencies] criterion = { version = "0.5", features = ["html_reports"] }