From e3570a060a567b6d6535178615c87fa8835e0ad9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 27 Jan 2022 12:45:09 -0700 Subject: [PATCH] chore: bump borsh from 0.9.1 to 0.9.2 (#22765) * chore: bump borsh from 0.9.1 to 0.9.2 Bumps [borsh](https://github.com/near/borsh-rs) from 0.9.1 to 0.9.2. - [Release notes](https://github.com/near/borsh-rs/releases) - [Changelog](https://github.com/near/borsh-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/near/borsh-rs/compare/v0.9.1...v0.9.2) --- updated-dependencies: - dependency-name: borsh dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] * [auto-commit] Update all Cargo lock files Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: dependabot-buildkite --- Cargo.lock | 43 ++++++++++++++--------------------------- banks-client/Cargo.toml | 2 +- programs/bpf/Cargo.lock | 40 ++++++++++++++------------------------ sdk/Cargo.toml | 2 +- 4 files changed, 30 insertions(+), 57 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6a3053b7f1..d7fb8846a3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -63,12 +63,6 @@ dependencies = [ "zeroize", ] -[[package]] -name = "ahash" -version = "0.4.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "739f4a8db6605981345c5654f3a85b056ce52f37a39d34da03f25bf2151ea16e" - [[package]] name = "ahash" version = "0.7.6" @@ -419,19 +413,19 @@ checksum = "8d696c370c750c948ada61c69a0ee2cbbb9c50b1019ddb86d9317157a99c2cae" [[package]] name = "borsh" -version = "0.9.1" +version = "0.9.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "18dda7dc709193c0d86a1a51050a926dc3df1cf262ec46a23a25dba421ea1924" +checksum = "4c9d0958efb8301e1626692ea879cbff622ef45cf731807ec8d488b34be98cb8" dependencies = [ "borsh-derive", - "hashbrown 0.9.1", + "hashbrown", ] [[package]] name = "borsh-derive" -version = "0.9.1" +version = "0.9.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "684155372435f578c0fa1acd13ebbb182cc19d6b38b64ae7901da4393217d264" +checksum = "325164710ad57bae6d32455ce3bd384f95768464a927ce145626dc3390a7f9fe" dependencies = [ "borsh-derive-internal", "borsh-schema-derive-internal", @@ -442,9 +436,9 @@ dependencies = [ [[package]] name = "borsh-derive-internal" -version = "0.9.1" +version = "0.9.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2102f62f8b6d3edeab871830782285b64cc1830168094db05c8e458f209bc5c3" +checksum = "f74159f43b231f4af8c4ce4967fef76e4e59725acf51706ddb9268c94348d15c" dependencies = [ "proc-macro2 1.0.32", "quote 1.0.10", @@ -453,9 +447,9 @@ dependencies = [ [[package]] name = "borsh-schema-derive-internal" -version = "0.9.1" +version = "0.9.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "196c978c4c9b0b142d446ef3240690bf5a8a33497074a113ff9a337ccb750483" +checksum = "99b2a77771907a820a860d200d193a0787c79a7890c8e253c462fa0f51ad58b6" dependencies = [ "proc-macro2 1.0.32", "quote 1.0.10", @@ -1821,22 +1815,13 @@ dependencies = [ "byteorder", ] -[[package]] -name = "hashbrown" -version = "0.9.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d7afe4a420e3fe79967a00898cc1f4db7c8a49a9333a29f8a4bd76a253d5cd04" -dependencies = [ - "ahash 0.4.7", -] - [[package]] name = "hashbrown" version = "0.11.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e" dependencies = [ - "ahash 0.7.6", + "ahash", ] [[package]] @@ -2084,7 +2069,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "282a6247722caba404c065016bbfa522806e51714c34f5dfc3e4a3a46fcb4223" dependencies = [ "autocfg 1.0.1", - "hashbrown 0.11.2", + "hashbrown", "rayon", ] @@ -2487,7 +2472,7 @@ version = "0.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "274353858935c992b13c0ca408752e2121da852d07dec7ce5f108c77dfa14d1f" dependencies = [ - "hashbrown 0.11.2", + "hashbrown", ] [[package]] @@ -4799,7 +4784,7 @@ dependencies = [ name = "solana-core" version = "1.10.0" dependencies = [ - "ahash 0.7.6", + "ahash", "base64 0.12.3", "bincode", "bs58 0.4.0", @@ -5366,7 +5351,7 @@ dependencies = [ name = "solana-perf" version = "1.10.0" dependencies = [ - "ahash 0.7.6", + "ahash", "bincode", "bv", "caps", diff --git a/banks-client/Cargo.toml b/banks-client/Cargo.toml index b8f2daf3cf..3260aad36d 100644 --- a/banks-client/Cargo.toml +++ b/banks-client/Cargo.toml @@ -10,7 +10,7 @@ documentation = "https://docs.rs/solana-banks-client" edition = "2021" [dependencies] -borsh = "0.9.1" +borsh = "0.9.2" futures = "0.3" solana-banks-interface = { path = "../banks-interface", version = "=1.10.0" } solana-program = { path = "../sdk/program", version = "=1.10.0" } diff --git a/programs/bpf/Cargo.lock b/programs/bpf/Cargo.lock index e2784591c1..dcb0618cc8 100644 --- a/programs/bpf/Cargo.lock +++ b/programs/bpf/Cargo.lock @@ -63,12 +63,6 @@ dependencies = [ "zeroize", ] -[[package]] -name = "ahash" -version = "0.4.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "739f4a8db6605981345c5654f3a85b056ce52f37a39d34da03f25bf2151ea16e" - [[package]] name = "ahash" version = "0.7.6" @@ -264,19 +258,19 @@ checksum = "8d696c370c750c948ada61c69a0ee2cbbb9c50b1019ddb86d9317157a99c2cae" [[package]] name = "borsh" -version = "0.9.1" +version = "0.9.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "18dda7dc709193c0d86a1a51050a926dc3df1cf262ec46a23a25dba421ea1924" +checksum = "4c9d0958efb8301e1626692ea879cbff622ef45cf731807ec8d488b34be98cb8" dependencies = [ "borsh-derive", - "hashbrown 0.9.1", + "hashbrown", ] [[package]] name = "borsh-derive" -version = "0.9.1" +version = "0.9.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "684155372435f578c0fa1acd13ebbb182cc19d6b38b64ae7901da4393217d264" +checksum = "325164710ad57bae6d32455ce3bd384f95768464a927ce145626dc3390a7f9fe" dependencies = [ "borsh-derive-internal", "borsh-schema-derive-internal", @@ -287,9 +281,9 @@ dependencies = [ [[package]] name = "borsh-derive-internal" -version = "0.9.1" +version = "0.9.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2102f62f8b6d3edeab871830782285b64cc1830168094db05c8e458f209bc5c3" +checksum = "f74159f43b231f4af8c4ce4967fef76e4e59725acf51706ddb9268c94348d15c" dependencies = [ "proc-macro2 1.0.24", "quote 1.0.6", @@ -298,9 +292,9 @@ dependencies = [ [[package]] name = "borsh-schema-derive-internal" -version = "0.9.1" +version = "0.9.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "196c978c4c9b0b142d446ef3240690bf5a8a33497074a113ff9a337ccb750483" +checksum = "99b2a77771907a820a860d200d193a0787c79a7890c8e253c462fa0f51ad58b6" dependencies = [ "proc-macro2 1.0.24", "quote 1.0.6", @@ -1223,20 +1217,14 @@ dependencies = [ "byteorder 1.4.3", ] -[[package]] -name = "hashbrown" -version = "0.9.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d7afe4a420e3fe79967a00898cc1f4db7c8a49a9333a29f8a4bd76a253d5cd04" -dependencies = [ - "ahash 0.4.7", -] - [[package]] name = "hashbrown" version = "0.11.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e" +dependencies = [ + "ahash", +] [[package]] name = "hermit-abi" @@ -1395,7 +1383,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "282a6247722caba404c065016bbfa522806e51714c34f5dfc3e4a3a46fcb4223" dependencies = [ "autocfg", - "hashbrown 0.11.2", + "hashbrown", ] [[package]] @@ -3340,7 +3328,7 @@ dependencies = [ name = "solana-perf" version = "1.10.0" dependencies = [ - "ahash 0.7.6", + "ahash", "bincode", "bv", "caps", diff --git a/sdk/Cargo.toml b/sdk/Cargo.toml index 0299e8113c..c92b1b69ac 100644 --- a/sdk/Cargo.toml +++ b/sdk/Cargo.toml @@ -41,7 +41,7 @@ assert_matches = { version = "1.5.0", optional = true } bincode = "1.3.3" bitflags = "1.3.1" bytemuck = { version = "1.7.3", features = ["derive"] } -borsh = "0.9.0" +borsh = "0.9.2" base64 = "0.13" bs58 = "0.4.0" byteorder = { version = "1.4.3", optional = true }