From c2dfa3865734a13bc77ad05ac2558643bc8043d3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Mar 2023 05:27:04 +0000 Subject: [PATCH] build(deps): bump bip39 from 1.1.0 to 2.0.0 Bumps [bip39](https://github.com/rust-bitcoin/rust-bip39) from 1.1.0 to 2.0.0. - [Release notes](https://github.com/rust-bitcoin/rust-bip39/releases) - [Changelog](https://github.com/rust-bitcoin/rust-bip39/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-bitcoin/rust-bip39/compare/v1.1.0...v2.0.0) --- updated-dependencies: - dependency-name: bip39 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 53 +++++++++++++++++++++++------------------------------ Cargo.toml | 2 +- 2 files changed, 24 insertions(+), 31 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 79f5cd80..0bc85957 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -71,7 +71,7 @@ dependencies = [ "once_cell", "parking_lot", "pin-project-lite", - "smallvec 1.10.0", + "smallvec", "tokio", "tokio-util", ] @@ -326,12 +326,11 @@ dependencies = [ [[package]] name = "bip39" -version = "1.1.0" +version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f5b9d9748b5770d1539657653dc5ac3cd9353549e74238dc0d96c22919128b94" +checksum = "93f2635620bf0b9d4576eb7bb9a38a55df78bd1205d26fa994b25911a69f212f" dependencies = [ "bitcoin_hashes", - "rand_core 0.4.2", "serde", "unicode-normalization", ] @@ -1388,12 +1387,6 @@ version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b87248edafb776e59e6ee64a79086f65890d3510f2c656c000bf2a7e8a0aea40" -[[package]] -name = "maybe-uninit" -version = "2.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00" - [[package]] name = "memchr" version = "0.1.11" @@ -1675,7 +1668,7 @@ dependencies = [ "cfg-if", "libc", "redox_syscall", - "smallvec 1.10.0", + "smallvec", "windows-sys 0.42.0", ] @@ -1935,12 +1928,6 @@ dependencies = [ "rand_core 0.6.4", ] -[[package]] -name = "rand_core" -version = "0.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc" - [[package]] name = "rand_core" version = "0.5.1" @@ -2412,15 +2399,6 @@ dependencies = [ "autocfg", ] -[[package]] -name = "smallvec" -version = "0.6.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b97fcaeba89edba30f044a10c6a3cc39df9c3f17d7cd829dd1446cab35f890e0" -dependencies = [ - "maybe-uninit", -] - [[package]] name = "smallvec" version = "1.10.0" @@ -2691,6 +2669,21 @@ version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "42657b1a6f4d817cda8e7a0ace261fe0cc946cf3a80314390b22cc61ae080792" +[[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 = "tokio" version = "1.26.0" @@ -2943,7 +2936,7 @@ dependencies = [ "once_cell", "regex 1.7.0", "sharded-slab", - "smallvec 1.10.0", + "smallvec", "thread_local 1.1.4", "tracing", "tracing-core", @@ -3012,11 +3005,11 @@ checksum = "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc" [[package]] name = "unicode-normalization" -version = "0.1.9" +version = "0.1.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "09c8070a9942f5e7cfccd93f490fdebd230ee3c3c9f107cb25bad5351ef671cf" +checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" dependencies = [ - "smallvec 0.6.14", + "tinyvec", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index aa1799d7..4d339ed6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,7 @@ abscissa_core = { version = "0.7.0" } abscissa_tokio = { version = "0.7.0", features = ["actix"] } actix = "0.13" actix-rt = "2.2" -bip39 = "1" +bip39 = "2" clap = { version = "4", features = ["derive"] } cosmos-sdk-proto = "0.14.0" cosmrs = { version = "0.11.0" }