From 7a1a3423aaadc6a6f14c1aa6d48b3fbc6142dd82 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Jan 2024 06:21:44 +0000 Subject: [PATCH] Bump bs58 from 0.4.0 to 0.5.0 Bumps [bs58](https://github.com/Nullus157/bs58-rs) from 0.4.0 to 0.5.0. - [Changelog](https://github.com/Nullus157/bs58-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/Nullus157/bs58-rs/compare/0.4.0...0.5.0) --- updated-dependencies: - dependency-name: bs58 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 22 ++++++++++++++++++++-- keys/Cargo.toml | 2 +- 2 files changed, 21 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1f24b51..62e2077 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -100,9 +100,12 @@ dependencies = [ [[package]] name = "bs58" -version = "0.4.0" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "771fe0050b883fcc3ea2359b1a96bcfbc090b7116eae7c3c512c7a083fdf23d3" +checksum = "f5353f36341f7451062466f0b755b96ac3a9547e4d7f6b70d603fc721a7d7896" +dependencies = [ + "tinyvec", +] [[package]] name = "bstr" @@ -1196,6 +1199,21 @@ dependencies = [ "serde_json", ] +[[package]] +name = "tinyvec" +version = "1.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" +dependencies = [ + "tinyvec_macros", +] + +[[package]] +name = "tinyvec_macros" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" + [[package]] name = "toml_datetime" version = "0.6.5" diff --git a/keys/Cargo.toml b/keys/Cargo.toml index 69dcbcf..dd84336 100644 --- a/keys/Cargo.toml +++ b/keys/Cargo.toml @@ -24,7 +24,7 @@ std = [ [dependencies] arrayref = { version = "0.3.6" } -bs58 = { version = "0.4", default-features = false, features = ["alloc"] } +bs58 = { version = "0.5", default-features = false, features = ["alloc"] } codec = { package = "parity-scale-codec", version = "3.6.5", default-features = false, features = ["derive"] } digest = { version = "0.9.0", default-features = false } hex = { version = "0.4", default-features = false, features = ["alloc"] }