diff --git a/crates/testing-utils/Cargo.toml b/crates/testing-utils/Cargo.toml index f56bdbfae..c85e08c9e 100644 --- a/crates/testing-utils/Cargo.toml +++ b/crates/testing-utils/Cargo.toml @@ -9,23 +9,26 @@ repository ='https://github.com/entropyxyz/entropy-core' edition ='2021' [dependencies] -subxt ="0.35.3" -sp-keyring ="34.0.0" -project-root ="0.2.2" -sp-core ={ version="31.0.0", default-features=false } +subxt="0.35.3" +sp-keyring="34.0.0" +project-root="0.2.2" +sp-core={ version="31.0.0", default-features=false } parity-scale-codec="3.6.12" -lazy_static ="1.5.0" -hex-literal ="0.4.1" -tokio ={ version="1.40", features=["macros", "fs", "rt-multi-thread", "io-util", "process"] } -axum ={ version="0.7.5" } -entropy-shared ={ version="0.2.0", path="../shared" } -entropy-kvdb ={ version="0.2.0", path="../kvdb", default-features=false } -entropy-tss ={ version="0.2.0", path="../threshold-signature-server", features=["test_helpers", "unsafe"] } -entropy-protocol ={ version="0.2.0", path="../protocol" } -synedrion ={ git="https://github.com/entropyxyz/synedrion", rev="1d210d149dfeb0dca1dd41d7fac4d0bf03c686fa" } -hex ="0.4.3" -rand_core ="0.6.4" -rand ="0.8.5" +lazy_static="1.5.0" +hex-literal="0.4.1" +tokio={ version="1.40", features=["macros", "fs", "rt-multi-thread", "io-util", "process"] } +axum={ version="0.7.5" } +entropy-shared={ version="0.2.0", path="../shared" } +entropy-kvdb={ version="0.2.0", path="../kvdb", default-features=false } +entropy-tss={ version="0.2.0", path="../threshold-signature-server", features=[ + "test_helpers", + "unsafe", +] } +entropy-protocol={ version="0.2.0", path="../protocol" } +synedrion={ git="https://github.com/entropyxyz/synedrion", rev="1d210d149dfeb0dca1dd41d7fac4d0bf03c686fa" } +hex="0.4.3" +rand_core="0.6.4" +rand="0.8.5" # Logging tracing ="0.1.37" diff --git a/crates/threshold-signature-server/tests/register_and_sign.rs b/crates/threshold-signature-server/tests/register_and_sign.rs index 464d96712..5af6df4cd 100644 --- a/crates/threshold-signature-server/tests/register_and_sign.rs +++ b/crates/threshold-signature-server/tests/register_and_sign.rs @@ -21,7 +21,6 @@ use entropy_client::{ }, client as test_client, Hasher, }; -use entropy_tss::helpers::tests::initialize_test_logger; use entropy_kvdb::clean_tests; use entropy_testing_utils::{ constants::{ @@ -29,6 +28,7 @@ use entropy_testing_utils::{ }, jump_start_network, spawn_testing_validators, test_node_process_testing_state, ChainSpecType, }; +use entropy_tss::helpers::tests::initialize_test_logger; use serial_test::serial; use sp_core::{sr25519, Pair}; use sp_keyring::AccountKeyring;