Skip to content

Commit

Permalink
Bump the patch-dependencies group with 3 updates (#1195)
Browse files Browse the repository at this point in the history
Bumps the patch-dependencies group with 3 updates: [thiserror](https://github.com/dtolnay/thiserror), [anyhow](https://github.com/dtolnay/anyhow) and [clap](https://github.com/clap-rs/clap).


Updates `thiserror` from 2.0.3 to 2.0.4
- [Release notes](https://github.com/dtolnay/thiserror/releases)
- [Commits](dtolnay/thiserror@2.0.3...2.0.4)

Updates `anyhow` from 1.0.93 to 1.0.94
- [Release notes](https://github.com/dtolnay/anyhow/releases)
- [Commits](dtolnay/anyhow@1.0.93...1.0.94)

Updates `clap` from 4.5.21 to 4.5.22
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@clap_complete-v4.5.21...clap_complete-v4.5.22)

---
updated-dependencies:
- dependency-name: thiserror
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-dependencies
- dependency-name: anyhow
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-dependencies
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Dec 4, 2024
1 parent aae53a5 commit 3df5d39
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 27 deletions.
30 changes: 15 additions & 15 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions crates/client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ serde ={ version="1.0", default-features=false, features=["derive"] }
entropy-shared={ version="0.3.0", path="../shared", default-features=false }
subxt ={ version="0.35.3", default-features=false, features=["jsonrpsee"] }
num ="0.4.3"
thiserror ="2.0.3"
thiserror ="2.0.4"
futures ="0.3"
sp-core ={ version="31.0.0", default-features=false, features=["full_crypto", "serde"] }
tracing ="0.1.41"
rand ={ version="0.8", default-features=false }
anyhow ="1.0.93"
anyhow ="1.0.94"

# Present when "full-client" feature is active
blake2 ={ version="0.10.4", optional=true }
Expand Down
2 changes: 1 addition & 1 deletion crates/kvdb/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ edition ='2021'
# Common
rand ={ version="0.8", default-features=false }
serde ={ version="1.0", features=["derive"] }
thiserror="2.0.3"
thiserror="2.0.4"
hex ="0.4.3"

# Substrate
Expand Down
4 changes: 2 additions & 2 deletions crates/protocol/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ x25519-dalek ={ version="2.0.1", features=["static_secrets"] }
futures ="0.3"
hex ="0.4.3"
blake2 ="0.10.4"
thiserror ="2.0.3"
thiserror ="2.0.4"
snow ="0.9.6"
getrandom ={ version="0.2", features=["js"] }
rand_core ={ version="0.6.4", features=["getrandom"] }
Expand Down Expand Up @@ -49,7 +49,7 @@ schnorrkel ={ version="0.11.4", default-features=false, features=["std"
[dev-dependencies]
serial_test="3.2.0"
sp-keyring ="34.0.0"
anyhow ="1.0.93"
anyhow ="1.0.94"
num_cpus ="1.16.0"

[features]
Expand Down
4 changes: 2 additions & 2 deletions crates/test-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ edition ='2021'

[dependencies]
entropy-client={ version="0.3.0", path="../client" }
clap ={ version="4.5.21", features=["derive"] }
clap ={ version="4.5.22", features=["derive"] }
colored ="2.0.4"
subxt ="0.35.3"
sp-core ="31.0.0"
anyhow ="1.0.93"
anyhow ="1.0.94"
tokio ={ version="1.41", features=["macros", "rt-multi-thread", "io-util", "process"] }
hex ="0.4.3"
bincode ="1.3.3"
Expand Down
6 changes: 3 additions & 3 deletions crates/threshold-signature-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ edition ='2021'
# Common
serde ={ version="1.0", default-features=false, features=["derive"] }
serde_json ="1.0"
thiserror ="2.0.3"
anyhow ="1.0.93"
thiserror ="2.0.4"
anyhow ="1.0.94"
blake2 ="0.10.4"
x25519-dalek ={ version="2.0.1", features=["static_secrets"] }
rand_core ="0.6.4"
Expand Down Expand Up @@ -63,7 +63,7 @@ bip32 ={ version="0.5.2" }
bip39 ={ version="2.1.0", features=["zeroize"] }
bytes ={ version="1.9", default-features=false, features=["serde"] }
base64 ="0.22.1"
clap ={ version="4.5.21", features=["derive"] }
clap ={ version="4.5.22", features=["derive"] }
num ="0.4.3"
snow ="0.9.6"
sha3 ="0.10.8"
Expand Down
4 changes: 2 additions & 2 deletions node/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ name='entropy'
[dependencies]

# Third-party dependencies
clap ={ version="4.5.21", features=["derive"], optional=true }
clap ={ version="4.5.22", features=["derive"], optional=true }
codec ={ package="parity-scale-codec", version="3.0.0" }
futures ="0.3.31"
hex-literal ="0.4.1"
Expand Down Expand Up @@ -99,7 +99,7 @@ pallet-staking-extension={ version="0.3.0", path="../../pallets/staking" }
project-root="0.2.2"

[build-dependencies]
clap={ version="4.5.21", optional=true }
clap={ version="4.5.22", optional=true }

pallet-balances ={ version="29.0.0" }
substrate-build-script-utils={ version="11.0.0" }
Expand Down

0 comments on commit 3df5d39

Please sign in to comment.