From e9e11a15c4b931e62689142348afe38777c98854 Mon Sep 17 00:00:00 2001 From: Jarred Parr Date: Fri, 6 Sep 2024 12:48:06 -0600 Subject: [PATCH 1/2] bump --- Cargo.lock | 16 ++++++++-------- Cargo.toml | 4 ++-- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 252ab30..80cb6ff 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2974,7 +2974,7 @@ dependencies = [ [[package]] name = "hotshot" version = "0.5.73" -source = "git+https://github.com/EspressoSystems/HotShot.git?tag=0.5.73#92dfe8406567bba5d1e553df95807f680790fce0" +source = "git+https://github.com/EspressoSystems/HotShot.git?tag=rc-0.5.74#f532baa295b2230969cbd5fb0b78e8930bf0a03b" dependencies = [ "anyhow", "async-broadcast", @@ -3021,7 +3021,7 @@ dependencies = [ [[package]] name = "hotshot-builder-api" version = "0.1.7" -source = "git+https://github.com/EspressoSystems/HotShot.git?tag=0.5.73#92dfe8406567bba5d1e553df95807f680790fce0" +source = "git+https://github.com/EspressoSystems/HotShot.git?tag=rc-0.5.74#f532baa295b2230969cbd5fb0b78e8930bf0a03b" dependencies = [ "async-trait", "clap", @@ -3068,7 +3068,7 @@ dependencies = [ [[package]] name = "hotshot-example-types" version = "0.5.73" -source = "git+https://github.com/EspressoSystems/HotShot.git?tag=0.5.73#92dfe8406567bba5d1e553df95807f680790fce0" +source = "git+https://github.com/EspressoSystems/HotShot.git?tag=rc-0.5.74#f532baa295b2230969cbd5fb0b78e8930bf0a03b" dependencies = [ "anyhow", "async-broadcast", @@ -3101,7 +3101,7 @@ dependencies = [ [[package]] name = "hotshot-orchestrator" version = "0.5.73" -source = "git+https://github.com/EspressoSystems/HotShot.git?tag=0.5.73#92dfe8406567bba5d1e553df95807f680790fce0" +source = "git+https://github.com/EspressoSystems/HotShot.git?tag=rc-0.5.74#f532baa295b2230969cbd5fb0b78e8930bf0a03b" dependencies = [ "anyhow", "async-compatibility-layer", @@ -3131,7 +3131,7 @@ dependencies = [ [[package]] name = "hotshot-task" version = "0.5.73" -source = "git+https://github.com/EspressoSystems/HotShot.git?tag=0.5.73#92dfe8406567bba5d1e553df95807f680790fce0" +source = "git+https://github.com/EspressoSystems/HotShot.git?tag=rc-0.5.74#f532baa295b2230969cbd5fb0b78e8930bf0a03b" dependencies = [ "anyhow", "async-broadcast", @@ -3146,7 +3146,7 @@ dependencies = [ [[package]] name = "hotshot-task-impls" version = "0.5.73" -source = "git+https://github.com/EspressoSystems/HotShot.git?tag=0.5.73#92dfe8406567bba5d1e553df95807f680790fce0" +source = "git+https://github.com/EspressoSystems/HotShot.git?tag=rc-0.5.74#f532baa295b2230969cbd5fb0b78e8930bf0a03b" dependencies = [ "anyhow", "async-broadcast", @@ -3183,7 +3183,7 @@ dependencies = [ [[package]] name = "hotshot-types" version = "0.1.11" -source = "git+https://github.com/EspressoSystems/HotShot.git?tag=0.5.73#92dfe8406567bba5d1e553df95807f680790fce0" +source = "git+https://github.com/EspressoSystems/HotShot.git?tag=rc-0.5.74#f532baa295b2230969cbd5fb0b78e8930bf0a03b" dependencies = [ "anyhow", "ark-bn254", @@ -4236,7 +4236,7 @@ dependencies = [ [[package]] name = "libp2p-networking" version = "0.5.73" -source = "git+https://github.com/EspressoSystems/HotShot.git?tag=0.5.73#92dfe8406567bba5d1e553df95807f680790fce0" +source = "git+https://github.com/EspressoSystems/HotShot.git?tag=rc-0.5.74#f532baa295b2230969cbd5fb0b78e8930bf0a03b" dependencies = [ "anyhow", "async-compatibility-layer", diff --git a/Cargo.toml b/Cargo.toml index 1935735..bc1d48d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,7 +17,7 @@ derivative = "2.2" derive_more = "0.99" either = { version = "1.12", features = ["serde"] } futures = "0.3" -hotshot-types = { git = "https://github.com/EspressoSystems/HotShot.git", tag = "0.5.73" } +hotshot-types = { git = "https://github.com/EspressoSystems/HotShot.git", tag = "rc-0.5.74" } rand = "0.8.5" serde = { version = "1.0", features = ["derive"] } snafu = "0.8" @@ -28,6 +28,6 @@ tracing = "0.1" vbs = "0.1.4" [dev-dependencies] -hotshot-example-types = { git = "https://github.com/EspressoSystems/HotShot.git", tag = "0.5.73" } +hotshot-example-types = { git = "https://github.com/EspressoSystems/HotShot.git", tag = "rc-0.5.74" } portpicker = "0.1.1" surf-disco = "0.9" From a1f3f833e251bbb699b85fd470e964e896c1fdc1 Mon Sep 17 00:00:00 2001 From: Jarred Parr Date: Mon, 9 Sep 2024 08:16:02 -0600 Subject: [PATCH 2/2] update --- Cargo.lock | 28 ++++++++++++++-------------- Cargo.toml | 4 ++-- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 80cb6ff..24d08d6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2973,8 +2973,8 @@ dependencies = [ [[package]] name = "hotshot" -version = "0.5.73" -source = "git+https://github.com/EspressoSystems/HotShot.git?tag=rc-0.5.74#f532baa295b2230969cbd5fb0b78e8930bf0a03b" +version = "0.5.74" +source = "git+https://github.com/EspressoSystems/HotShot.git?tag=0.5.74#b08660bf9e01d4d59a79009d67100ba13895e4b2" dependencies = [ "anyhow", "async-broadcast", @@ -3021,7 +3021,7 @@ dependencies = [ [[package]] name = "hotshot-builder-api" version = "0.1.7" -source = "git+https://github.com/EspressoSystems/HotShot.git?tag=rc-0.5.74#f532baa295b2230969cbd5fb0b78e8930bf0a03b" +source = "git+https://github.com/EspressoSystems/HotShot.git?tag=0.5.74#b08660bf9e01d4d59a79009d67100ba13895e4b2" dependencies = [ "async-trait", "clap", @@ -3067,8 +3067,8 @@ dependencies = [ [[package]] name = "hotshot-example-types" -version = "0.5.73" -source = "git+https://github.com/EspressoSystems/HotShot.git?tag=rc-0.5.74#f532baa295b2230969cbd5fb0b78e8930bf0a03b" +version = "0.5.74" +source = "git+https://github.com/EspressoSystems/HotShot.git?tag=0.5.74#b08660bf9e01d4d59a79009d67100ba13895e4b2" dependencies = [ "anyhow", "async-broadcast", @@ -3100,8 +3100,8 @@ dependencies = [ [[package]] name = "hotshot-orchestrator" -version = "0.5.73" -source = "git+https://github.com/EspressoSystems/HotShot.git?tag=rc-0.5.74#f532baa295b2230969cbd5fb0b78e8930bf0a03b" +version = "0.5.74" +source = "git+https://github.com/EspressoSystems/HotShot.git?tag=0.5.74#b08660bf9e01d4d59a79009d67100ba13895e4b2" dependencies = [ "anyhow", "async-compatibility-layer", @@ -3130,8 +3130,8 @@ dependencies = [ [[package]] name = "hotshot-task" -version = "0.5.73" -source = "git+https://github.com/EspressoSystems/HotShot.git?tag=rc-0.5.74#f532baa295b2230969cbd5fb0b78e8930bf0a03b" +version = "0.5.74" +source = "git+https://github.com/EspressoSystems/HotShot.git?tag=0.5.74#b08660bf9e01d4d59a79009d67100ba13895e4b2" dependencies = [ "anyhow", "async-broadcast", @@ -3145,8 +3145,8 @@ dependencies = [ [[package]] name = "hotshot-task-impls" -version = "0.5.73" -source = "git+https://github.com/EspressoSystems/HotShot.git?tag=rc-0.5.74#f532baa295b2230969cbd5fb0b78e8930bf0a03b" +version = "0.5.74" +source = "git+https://github.com/EspressoSystems/HotShot.git?tag=0.5.74#b08660bf9e01d4d59a79009d67100ba13895e4b2" dependencies = [ "anyhow", "async-broadcast", @@ -3183,7 +3183,7 @@ dependencies = [ [[package]] name = "hotshot-types" version = "0.1.11" -source = "git+https://github.com/EspressoSystems/HotShot.git?tag=rc-0.5.74#f532baa295b2230969cbd5fb0b78e8930bf0a03b" +source = "git+https://github.com/EspressoSystems/HotShot.git?tag=0.5.74#b08660bf9e01d4d59a79009d67100ba13895e4b2" dependencies = [ "anyhow", "ark-bn254", @@ -4235,8 +4235,8 @@ dependencies = [ [[package]] name = "libp2p-networking" -version = "0.5.73" -source = "git+https://github.com/EspressoSystems/HotShot.git?tag=rc-0.5.74#f532baa295b2230969cbd5fb0b78e8930bf0a03b" +version = "0.5.74" +source = "git+https://github.com/EspressoSystems/HotShot.git?tag=0.5.74#b08660bf9e01d4d59a79009d67100ba13895e4b2" dependencies = [ "anyhow", "async-compatibility-layer", diff --git a/Cargo.toml b/Cargo.toml index bc1d48d..19c0720 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,7 +17,7 @@ derivative = "2.2" derive_more = "0.99" either = { version = "1.12", features = ["serde"] } futures = "0.3" -hotshot-types = { git = "https://github.com/EspressoSystems/HotShot.git", tag = "rc-0.5.74" } +hotshot-types = { git = "https://github.com/EspressoSystems/HotShot.git", tag = "0.5.74" } rand = "0.8.5" serde = { version = "1.0", features = ["derive"] } snafu = "0.8" @@ -28,6 +28,6 @@ tracing = "0.1" vbs = "0.1.4" [dev-dependencies] -hotshot-example-types = { git = "https://github.com/EspressoSystems/HotShot.git", tag = "rc-0.5.74" } +hotshot-example-types = { git = "https://github.com/EspressoSystems/HotShot.git", tag = "0.5.74" } portpicker = "0.1.1" surf-disco = "0.9"