From b6da01a0636c100d3972662d9bd422704f609032 Mon Sep 17 00:00:00 2001 From: peg Date: Tue, 3 Dec 2024 10:36:57 +0100 Subject: [PATCH] Use published version of entropy-programs-runtime v0.11.0 --- Cargo.lock | 10 ++++++---- crates/threshold-signature-server/Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e582f6832..eaed294c7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2578,8 +2578,9 @@ dependencies = [ [[package]] name = "entropy-programs-core" -version = "0.10.0" -source = "git+https://github.com/entropyxyz/programs.git?branch=master#b300dab62e0bd77ff9a6341dab4988459dcaed78" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e9a92d75d04917995a04398bc9bb57971c1d9ce4fe7b0460fe12fe10213a2c9c" dependencies = [ "getrandom 0.2.15", "serde", @@ -2589,8 +2590,9 @@ dependencies = [ [[package]] name = "entropy-programs-runtime" -version = "0.10.0" -source = "git+https://github.com/entropyxyz/programs.git?branch=master#b300dab62e0bd77ff9a6341dab4988459dcaed78" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b1d5617ea52abc9c4eed998053a2dcf163f926224a1302fb75d4cc31ae99e700" dependencies = [ "entropy-programs-core", "thiserror 1.0.68", diff --git a/crates/threshold-signature-server/Cargo.toml b/crates/threshold-signature-server/Cargo.toml index c33746d1d..b537f2c0b 100644 --- a/crates/threshold-signature-server/Cargo.toml +++ b/crates/threshold-signature-server/Cargo.toml @@ -46,7 +46,7 @@ entropy-protocol={ version="0.3.0", path="../protocol", features=["server"] } entropy-client ={ version="0.3.0", path="../client", default-features=false, features=["native"] } # Programs -entropy-programs-runtime={ git="https://github.com/entropyxyz/programs.git", branch="master" } +entropy-programs-runtime="0.11.0" # Logging tracing ="0.1.41"