diff --git a/crates/client/Cargo.toml b/crates/client/Cargo.toml index 29becb4e5..190468c64 100644 --- a/crates/client/Cargo.toml +++ b/crates/client/Cargo.toml @@ -29,7 +29,7 @@ reqwest ={ version="0.12.7", features=["json", "stream"], optional=true base64 ={ version="0.22.0", optional=true } synedrion ={ git="https://github.com/entropyxyz/synedrion", rev="1d210d149dfeb0dca1dd41d7fac4d0bf03c686fa", optional=true } hex ={ version="0.4.3", optional=true } -anyhow ="1.0.86" +anyhow ="1.0.87" # Only for the browser js-sys={ version="0.3.70", optional=true } diff --git a/crates/protocol/Cargo.toml b/crates/protocol/Cargo.toml index b54ebb3d9..9941d6973 100644 --- a/crates/protocol/Cargo.toml +++ b/crates/protocol/Cargo.toml @@ -49,7 +49,7 @@ schnorrkel ={ version="0.11.4", default-features=false, features=["std" [dev-dependencies] serial_test="3.1.1" sp-keyring ="34.0.0" -anyhow ="1.0.86" +anyhow ="1.0.87" num_cpus ="1.16.0" [features] diff --git a/crates/test-cli/Cargo.toml b/crates/test-cli/Cargo.toml index 9945fb6ef..f9a7dde3a 100644 --- a/crates/test-cli/Cargo.toml +++ b/crates/test-cli/Cargo.toml @@ -14,7 +14,7 @@ clap ={ version="4.5.17", features=["derive"] } colored ="2.0.4" subxt ="0.35.3" sp-core ="31.0.0" -anyhow ="1.0.86" +anyhow ="1.0.87" tokio ={ version="1.39", features=["macros", "rt-multi-thread", "io-util", "process"] } hex ="0.4.3" bincode ="1.3.3" diff --git a/crates/threshold-signature-server/Cargo.toml b/crates/threshold-signature-server/Cargo.toml index 57f4f3957..6a1438a5f 100644 --- a/crates/threshold-signature-server/Cargo.toml +++ b/crates/threshold-signature-server/Cargo.toml @@ -12,7 +12,7 @@ edition ='2021' # Common serde ={ version="1.0", default-features=false, features=["derive"] } serde_json ="1.0" -anyhow ="1.0.86" +anyhow ="1.0.87" thiserror ="1.0.63" blake2 ="0.10.4" x25519-dalek ={ version="2.0.1", features=["static_secrets"] } diff --git a/node/cli/Cargo.toml b/node/cli/Cargo.toml index 04a5c946f..1bb280170 100644 --- a/node/cli/Cargo.toml +++ b/node/cli/Cargo.toml @@ -29,7 +29,7 @@ lazy_static ={ version="1.5.0", features=["spin_no_std"] } log ="0.4.22" pallet-im-online={ version="28.0.0" } rand ="0.8.5" -serde ={ version="1.0.209", features=["derive"] } +serde ={ version="1.0.210", features=["derive"] } serde_json ='1.0.128' # Substrate Client diff --git a/node/cli/src/chain_spec/dev.rs b/node/cli/src/chain_spec/dev.rs index 4d8b2fd68..5f33a1b44 100644 --- a/node/cli/src/chain_spec/dev.rs +++ b/node/cli/src/chain_spec/dev.rs @@ -35,7 +35,7 @@ use sc_service::ChainType; use sp_authority_discovery::AuthorityId as AuthorityDiscoveryId; use sp_consensus_babe::AuthorityId as BabeId; use sp_core::{sr25519, ByteArray}; -use sp_runtime::Perbill; +use sp_runtime::{BoundedVec, Perbill}; pub fn devnet_three_node_initial_tss_servers( ) -> Vec<(sp_runtime::AccountId32, TssX25519PublicKey, String)> { diff --git a/node/cli/src/chain_spec/integration_tests.rs b/node/cli/src/chain_spec/integration_tests.rs index 474751572..b45dfe5de 100644 --- a/node/cli/src/chain_spec/integration_tests.rs +++ b/node/cli/src/chain_spec/integration_tests.rs @@ -35,7 +35,7 @@ use sc_service::ChainType; use sp_authority_discovery::AuthorityId as AuthorityDiscoveryId; use sp_consensus_babe::AuthorityId as BabeId; use sp_core::{sr25519, ByteArray}; -use sp_runtime::Perbill; +use sp_runtime::{BoundedVec, Perbill}; /// The configuration used for the Threshold Signature Scheme server integration tests. /// diff --git a/pallets/staking/Cargo.toml b/pallets/staking/Cargo.toml index 91fa49dd7..60beae497 100644 --- a/pallets/staking/Cargo.toml +++ b/pallets/staking/Cargo.toml @@ -15,7 +15,7 @@ targets=['x86_64-unknown-linux-gnu'] codec ={ package="parity-scale-codec", version="3.6.3", default-features=false, features=["derive"] } scale-info ={ version="2.11", default-features=false, features=["derive"] } log ={ version="0.4.22", default-features=false } -serde ={ version="1.0.209", default-features=false } +serde ={ version="1.0.210", default-features=false } rand_chacha={ version="0.3", default-features=false } frame-benchmarking={ version="29.0.0", default-features=false, optional=true }