Skip to content

Commit

Permalink
Bump to Synedrion v0.2.0-beta.0 (#1099)
Browse files Browse the repository at this point in the history
* Bump Synedrion to `v0.2.0-beta.0`

This is a published release that include the BIP-32 key derivation features we depend on now.

* TaploFmt
  • Loading branch information
HCastano authored Oct 4, 2024
1 parent e4a551b commit 7f65ebc
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 9 deletions.
5 changes: 3 additions & 2 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 @@ -28,7 +28,7 @@ x25519-dalek ={ version="2.0.1", features=["static_secrets"], optional=true }
entropy-protocol={ version="0.2.0", path="../protocol", optional=true, default-features=false }
reqwest ={ version="0.12.8", features=["json", "stream"], optional=true }
base64 ={ version="0.22.0", optional=true }
synedrion ={ git="https://github.com/entropyxyz/synedrion", rev="1d210d149dfeb0dca1dd41d7fac4d0bf03c686fa", optional=true }
synedrion ={ version="0.2.0-beta.0", optional=true }
hex ={ version="0.4.3", optional=true }
anyhow ="1.0.89"

Expand Down
2 changes: 1 addition & 1 deletion crates/kvdb/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ zeroize ={ version="1.8", features=["zeroize_derive"], default-features=
rpassword ={ version="7.3.1", default-features=false }
scrypt ={ version="0.11.0", default-features=false, features=["std"] }
chacha20poly1305={ version="0.9", features=["alloc"], default-features=false }
synedrion ={ git="https://github.com/entropyxyz/synedrion", rev="1d210d149dfeb0dca1dd41d7fac4d0bf03c686fa" }
synedrion ={ version="0.2.0-beta.0" }

# Async
tokio ={ version="1.40", features=["macros", "sync", "fs", "rt-multi-thread", "io-util"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/protocol/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ edition ='2021'
[dependencies]
async-trait ="0.1.83"
entropy-shared ={ version="0.2.0", path="../shared", default-features=false }
synedrion ={ git="https://github.com/entropyxyz/synedrion", rev="1d210d149dfeb0dca1dd41d7fac4d0bf03c686fa" }
synedrion ={ version="0.2.0-beta.0" }
serde ={ version="1.0", features=["derive"], default-features=false }
subxt ={ version="0.35.3", default-features=false }
sp-core ={ version="31.0.0", default-features=false, features=["full_crypto", "serde"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/testing-utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ 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"] }
entropy-protocol ={ version="0.2.0", path="../protocol" }
synedrion ={ git="https://github.com/entropyxyz/synedrion", rev="1d210d149dfeb0dca1dd41d7fac4d0bf03c686fa" }
synedrion ={ version="0.2.0-beta.0" }
hex ="0.4.3"
rand_core ="0.6.4"
rand ="0.8.5"
Expand Down
2 changes: 1 addition & 1 deletion crates/threshold-signature-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ zeroize ="1.8.1"
hex ="0.4.3"
reqwest-eventsource="0.6"
serde_derive ="1.0.147"
synedrion ={ git="https://github.com/entropyxyz/synedrion", rev="1d210d149dfeb0dca1dd41d7fac4d0bf03c686fa" }
synedrion ={ version="0.2.0-beta.0" }
strum ="0.26.2"
backoff ={ version="0.4.0", features=["tokio"] }

Expand Down
2 changes: 1 addition & 1 deletion pallets/registry/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ bip32 ={ version="0.5.2", default-features=false, features=["alloc"] }
codec ={ package="parity-scale-codec", version="3.6.3", default-features=false, features=["derive"] }
log ={ version="0.4.22", default-features=false }
scale-info={ version="2.11", default-features=false, features=["derive"] }
synedrion ={ git="https://github.com/entropyxyz/synedrion/", rev="1d210d149dfeb0dca1dd41d7fac4d0bf03c686fa", default-features=false }
synedrion ={ version="0.2.0-beta.0", default-features=false }
rand ={ version="0.8.5", default-features=false, features=["alloc"] }

frame-benchmarking={ version="29.0.0", default-features=false, optional=true }
Expand Down
2 changes: 1 addition & 1 deletion scripts/create-test-keyshares/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ entropy-kvdb ={ version="0.2.0-rc.1", path="../../crates/kvdb", default-
sp-core ="31.0.0"

# Unreleased version of Synedrion with support for child key derivations.
synedrion={ git="https://github.com/entropyxyz/synedrion", rev="1d210d149dfeb0dca1dd41d7fac4d0bf03c686fa" }
synedrion={ version="0.2.0-beta.0" }
entropy-tss={ version="0.2.0-rc.1", path="../../crates/threshold-signature-server", features=[
"test_helpers",
] }

0 comments on commit 7f65ebc

Please sign in to comment.