Skip to content

Commit

Permalink
Bump the patch-dependencies group with 3 updates
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), [clap](https://github.com/clap-rs/clap) and [uuid](https://github.com/uuid-rs/uuid).


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

Updates `clap` from 4.5.24 to 4.5.26
- [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.24...clap_complete-v4.5.26)

Updates `uuid` from 1.11.0 to 1.11.1
- [Release notes](https://github.com/uuid-rs/uuid/releases)
- [Commits](uuid-rs/uuid@1.11.0...1.11.1)

---
updated-dependencies:
- dependency-name: thiserror
  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
- dependency-name: uuid
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored Jan 10, 2025
1 parent 4e978f4 commit faeda9b
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 25 deletions.
32 changes: 16 additions & 16 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion crates/client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ 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.9"
thiserror ="2.0.10"
futures ="0.3"
sp-core ={ version="31.0.0", default-features=false, features=["full_crypto", "serde"] }
tracing ="0.1.41"
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.9"
thiserror="2.0.10"
hex ="0.4.3"

# Substrate
Expand Down
2 changes: 1 addition & 1 deletion 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.9"
thiserror ="2.0.10"
snow ="0.9.6"
getrandom ={ version="0.2", features=["js"] }
rand_core ={ version="0.6.4", features=["getrandom"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/test-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ edition ='2021'

[dependencies]
entropy-client ={ version="0.3.0", path="../client" }
clap ={ version="4.5.24", features=["derive"] }
clap ={ version="4.5.26", features=["derive"] }
colored ="2.2.0"
subxt ="0.35.3"
sp-core ="31.0.0"
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,7 +12,7 @@ edition ='2021'
# Common
serde ={ version="1.0", default-features=false, features=["derive"] }
serde_json ="1.0"
thiserror ="2.0.9"
thiserror ="2.0.10"
anyhow ="1.0.95"
blake2 ="0.10.4"
x25519-dalek ={ version="2.0.1", features=["static_secrets"] }
Expand Down Expand Up @@ -55,7 +55,7 @@ tracing-subscriber ={ version="0.3.19", features=["env-filter", "json"] }
tracing-loki ="0.2"
tower-http ={ version="0.6.2", features=["trace", "cors"] }
tracing-bunyan-formatter="0.3.10"
uuid ={ version="1.11.0", features=["v4"] }
uuid ={ version="1.11.1", features=["v4"] }

# Misc
tokio-tungstenite="0.26.1"
Expand All @@ -64,7 +64,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.24", features=["derive"] }
clap ={ version="4.5.26", 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.24", features=["derive"], optional=true }
clap ={ version="4.5.26", 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.24", optional=true }
clap={ version="4.5.26", optional=true }

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

0 comments on commit faeda9b

Please sign in to comment.