From 5a133d491c45ec0f41738c7f2228431e2c6d150e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Sep 2024 05:21:25 +0000 Subject: [PATCH] Bump the cargo-minor group with 2 updates Bumps the cargo-minor group with 2 updates: [soroban-sdk](https://github.com/stellar/rs-soroban-sdk) and [bytes](https://github.com/tokio-rs/bytes). Updates `soroban-sdk` from 21.7.0 to 21.7.1 - [Release notes](https://github.com/stellar/rs-soroban-sdk/releases) - [Commits](https://github.com/stellar/rs-soroban-sdk/compare/v21.7.0...v21.7.1) Updates `bytes` from 1.7.1 to 1.7.2 - [Release notes](https://github.com/tokio-rs/bytes/releases) - [Changelog](https://github.com/tokio-rs/bytes/blob/master/CHANGELOG.md) - [Commits](https://github.com/tokio-rs/bytes/compare/v1.7.1...v1.7.2) --- updated-dependencies: - dependency-name: soroban-sdk dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: bytes dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 24 ++++++++++++------------ Cargo.toml | 2 +- contracts/versioning/Cargo.toml | 2 +- 3 files changed, 14 insertions(+), 14 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 764f0bf..b09ebb3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -115,9 +115,9 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" [[package]] name = "bytes" -version = "1.7.1" +version = "1.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8318a53db07bb3f8dca91a600466bdb3f2eaadeedfdbcf02e1accbad9271ba50" +checksum = "428d9aa8fbc0670b7b8d6030a7fadd0f86151cae55e4dbbece15f3780a3dfaf3" [[package]] name = "bytes-lit" @@ -1057,9 +1057,9 @@ dependencies = [ [[package]] name = "soroban-ledger-snapshot" -version = "21.7.0" +version = "21.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "265cbd3f339736021f9696ce7759ed0d0e93c142fe28dfdd394e1eccd1cf4f99" +checksum = "15263ad07a3e0ec3f2ee3aea83b7c1a0610ad26ba76819f5092afcfaf0f3a3ed" dependencies = [ "serde", "serde_json", @@ -1071,9 +1071,9 @@ dependencies = [ [[package]] name = "soroban-sdk" -version = "21.7.0" +version = "21.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2e5af1bde05f51c57a2be940a6a08b5c9d6df2663a9acf9b978f72d13aa45290" +checksum = "73e995a8604a01ec7a8c1e1f60a890981eb00f1cd25c3b15f5194364f27993cc" dependencies = [ "arbitrary", "bytes-lit", @@ -1091,9 +1091,9 @@ dependencies = [ [[package]] name = "soroban-sdk-macros" -version = "21.7.0" +version = "21.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8c13b3f338684327172cf8b2fcc4a7c7fec27454fa5b21fdca1259a8f1b1e939" +checksum = "c3eda569fe4c3aa2b45f2366e07d9476127e141c7f376d625b6a8217ee99f81f" dependencies = [ "crate-git-revision", "darling", @@ -1111,9 +1111,9 @@ dependencies = [ [[package]] name = "soroban-spec" -version = "21.7.0" +version = "21.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1a012d9d8fb9a9d80b381a62a0057629ce313609f8061553f29a05de1c1fd8f" +checksum = "87cfbe92fbabaea20517dc76fc89227735ffda2f19a10e2fe96db0ecb19b72b1" dependencies = [ "base64 0.13.1", "stellar-xdr", @@ -1123,9 +1123,9 @@ dependencies = [ [[package]] name = "soroban-spec-rust" -version = "21.7.0" +version = "21.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dfdaa78517c3817af0b23e906780a1c89cb247707049204d1b34994e4256e485" +checksum = "6569ea39d9f4d8cafadd0a2a77fc94991f7870d4d3c2a1fa401db9cb02d6082b" dependencies = [ "prettyplease", "proc-macro2", diff --git a/Cargo.toml b/Cargo.toml index 075eda9..7db89fa 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ members = [ ] [workspace.dependencies] -soroban-sdk = "21.7.0" +soroban-sdk = "21.7.1" [profile.release] opt-level = "z" diff --git a/contracts/versioning/Cargo.toml b/contracts/versioning/Cargo.toml index 654fdfd..887f7ce 100644 --- a/contracts/versioning/Cargo.toml +++ b/contracts/versioning/Cargo.toml @@ -10,7 +10,7 @@ doctest = false [dependencies] soroban-sdk = { workspace = true } -bytes = "1.7.1" +bytes = "1.7.2" [dev-dependencies] soroban-sdk = { workspace = true, features = ["testutils"] }