diff --git a/Cargo.lock b/Cargo.lock index 4f92ae9c6b..415a922201 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1619,6 +1619,7 @@ dependencies = [ "cfg-if 0.1.10", "libc", "wasi", + "wasm-bindgen", ] [[package]] @@ -2002,9 +2003,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bee0328b1209d157ef001c94dd85b4f8f64139adb0eac2659f4b08382b2f474d" dependencies = [ "cfg-if 1.0.0", - "js-sys", - "wasm-bindgen", - "web-sys", ] [[package]] @@ -2690,9 +2688,6 @@ name = "once_cell" version = "1.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "692fcb63b64b1758029e0a96ee63e049ce8c5948587f2f7208df04625e5f6b56" -dependencies = [ - "parking_lot 0.11.2", -] [[package]] name = "opaque-debug" @@ -6200,20 +6195,20 @@ dependencies = [ [[package]] name = "tiny-bip39" -version = "0.8.1" +version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "524daa5624d9d4ffb5a0625971d35205b882111daa6b6338a7a6c578a3c36928" +checksum = "ffc59cb9dfc85bb312c3a78fd6aa8a8582e310b0fa885d5bb877f6dcc601839d" dependencies = [ "anyhow", "hmac 0.8.1", "once_cell", - "parking_lot 0.11.2", "pbkdf2 0.4.0", "rand 0.7.3", "rustc-hash", "sha2", "thiserror", "unicode-normalization", + "wasm-bindgen", "zeroize", ] diff --git a/clap-utils/Cargo.toml b/clap-utils/Cargo.toml index beb101d7cc..add33edb45 100644 --- a/clap-utils/Cargo.toml +++ b/clap-utils/Cargo.toml @@ -15,7 +15,7 @@ rpassword = "5.0" solana-remote-wallet = { path = "../remote-wallet", version = "=1.8.0" } solana-sdk = { path = "../sdk", version = "=1.8.0" } thiserror = "1.0.29" -tiny-bip39 = "0.8.1" +tiny-bip39 = "0.8.2" uriparse = "0.6.3" url = "2.2.2" chrono = "0.4" diff --git a/cli/Cargo.toml b/cli/Cargo.toml index f3358b8516..8ffb810f1f 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -42,7 +42,7 @@ solana-version = { path = "../version", version = "=1.8.0" } solana-vote-program = { path = "../programs/vote", version = "=1.8.0" } spl-memo = { version = "=3.0.1", features = ["no-entrypoint"] } thiserror = "1.0.29" -tiny-bip39 = "0.8.1" +tiny-bip39 = "0.8.2" [dev-dependencies] solana-core = { path = "../core", version = "=1.8.0" } diff --git a/keygen/Cargo.toml b/keygen/Cargo.toml index fb9bfd5f5d..0b26ee7587 100644 --- a/keygen/Cargo.toml +++ b/keygen/Cargo.toml @@ -19,7 +19,7 @@ solana-cli-config = { path = "../cli-config", version = "=1.8.0" } solana-remote-wallet = { path = "../remote-wallet", version = "=1.8.0" } solana-sdk = { path = "../sdk", version = "=1.8.0" } solana-version = { path = "../version", version = "=1.8.0" } -tiny-bip39 = "0.8.1" +tiny-bip39 = "0.8.2" [[bin]] name = "solana-keygen" diff --git a/programs/bpf/Cargo.lock b/programs/bpf/Cargo.lock index 2fe27b779c..42308c3539 100644 --- a/programs/bpf/Cargo.lock +++ b/programs/bpf/Cargo.lock @@ -1012,6 +1012,7 @@ dependencies = [ "cfg-if 0.1.10", "libc", "wasi 0.9.0+wasi-snapshot-preview1", + "wasm-bindgen", ] [[package]] @@ -1270,9 +1271,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "61124eeebbd69b8190558df225adf7e4caafce0d743919e5d6b19652314ec5ec" dependencies = [ "cfg-if 1.0.0", - "js-sys", - "wasm-bindgen", - "web-sys", ] [[package]] @@ -1668,9 +1666,6 @@ name = "once_cell" version = "1.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "692fcb63b64b1758029e0a96ee63e049ce8c5948587f2f7208df04625e5f6b56" -dependencies = [ - "parking_lot", -] [[package]] name = "opaque-debug" @@ -3685,20 +3680,20 @@ dependencies = [ [[package]] name = "tiny-bip39" -version = "0.8.1" +version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "524daa5624d9d4ffb5a0625971d35205b882111daa6b6338a7a6c578a3c36928" +checksum = "ffc59cb9dfc85bb312c3a78fd6aa8a8582e310b0fa885d5bb877f6dcc601839d" dependencies = [ "anyhow", "hmac 0.8.1", "once_cell", - "parking_lot", "pbkdf2 0.4.0", "rand 0.7.3", "rustc-hash", "sha2", "thiserror", "unicode-normalization", + "wasm-bindgen", "zeroize", ] diff --git a/sdk/Cargo.toml b/sdk/Cargo.toml index 4545c265b3..046147aa4b 100644 --- a/sdk/Cargo.toml +++ b/sdk/Cargo.toml @@ -83,7 +83,7 @@ uriparse = "0.6.3" [dev-dependencies] curve25519-dalek = "3.2.0" -tiny-bip39 = "0.8.1" +tiny-bip39 = "0.8.2" [build-dependencies] rustc_version = "0.4"