From 592ddf5f807a01835d40b3f1ea1f8484906ba7d1 Mon Sep 17 00:00:00 2001 From: Jarred Parr Date: Fri, 7 Jun 2024 11:52:00 -0600 Subject: [PATCH] bump events service --- Cargo.lock | 105 +++++------------------------------------------------ Cargo.toml | 6 +-- 2 files changed, 13 insertions(+), 98 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 528a638e..609675e4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3102,7 +3102,7 @@ dependencies = [ "serde", "sha2 0.10.8", "snafu", - "surf-disco 0.8.0", + "surf-disco", "time 0.3.36", "tokio", "tracing", @@ -3123,7 +3123,7 @@ dependencies = [ "serde", "snafu", "tagged-base64", - "tide-disco 0.8.0", + "tide-disco", "toml", "vbs", ] @@ -3150,9 +3150,9 @@ dependencies = [ "serde", "sha2 0.10.8", "snafu", - "surf-disco 0.7.0", + "surf-disco", "tagged-base64", - "tide-disco 0.7.0", + "tide-disco", "tokio", "tracing", "vbs", @@ -3161,7 +3161,7 @@ dependencies = [ [[package]] name = "hotshot-events-service" version = "0.1.26" -source = "git+https://github.com/EspressoSystems/hotshot-events-service.git?tag=0.1.26#cb0b05ae81c6c03a059d06a19aaa208b630fb76a" +source = "git+https://github.com/EspressoSystems/hotshot-events-service.git?tag=0.1.27#e4703477c687be50dea4faa4235aafa67a068cd4" dependencies = [ "async-broadcast", "async-compatibility-layer", @@ -3177,7 +3177,7 @@ dependencies = [ "serde", "snafu", "tagged-base64", - "tide-disco 0.7.0", + "tide-disco", "toml", "tracing", "vbs", @@ -3234,9 +3234,9 @@ dependencies = [ "serde", "serde-inline-default", "serde_json", - "surf-disco 0.8.0", + "surf-disco", "thiserror", - "tide-disco 0.8.0", + "tide-disco", "tokio", "toml", "tracing", @@ -3285,7 +3285,7 @@ dependencies = [ "serde", "sha2 0.10.8", "snafu", - "surf-disco 0.8.0", + "surf-disco", "tagged-base64", "time 0.3.36", "tokio", @@ -5279,17 +5279,6 @@ version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" -[[package]] -name = "num-derive" -version = "0.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.66", -] - [[package]] name = "num-integer" version = "0.1.46" @@ -7507,25 +7496,6 @@ version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc" -[[package]] -name = "surf-disco" -version = "0.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2e4318abbbbc4d640c6cb45d29cd3c70cf517c751fae9b68f2f76a6ff1950da7" -dependencies = [ - "async-std", - "async-tungstenite", - "derivative", - "futures", - "hex", - "reqwest", - "serde", - "serde_json", - "tide-disco 0.7.0", - "tracing", - "vbs", -] - [[package]] name = "surf-disco" version = "0.8.0" @@ -7540,7 +7510,7 @@ dependencies = [ "reqwest", "serde", "serde_json", - "tide-disco 0.8.0", + "tide-disco", "tracing", "vbs", ] @@ -7799,61 +7769,6 @@ dependencies = [ "serde_json", ] -[[package]] -name = "tide-disco" -version = "0.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "44c9d803bc734a5cced767b36bb1caab87e9eb7eb144cffcab38160b084a8cef" -dependencies = [ - "anyhow", - "async-h1", - "async-lock 3.4.0", - "async-std", - "async-trait", - "clap", - "config", - "derivative", - "derive_more", - "dirs", - "edit-distance", - "futures", - "futures-util", - "http 1.1.0", - "include_dir", - "itertools 0.12.1", - "lazy_static", - "libc", - "markdown", - "maud", - "num-derive", - "num-traits", - "parking_lot", - "prometheus", - "reqwest", - "routefinder", - "semver 1.0.23", - "serde", - "serde_json", - "serde_with", - "shellexpand", - "signal-hook", - "signal-hook-async-std", - "snafu", - "strum", - "strum_macros", - "tagged-base64", - "tide", - "tide-websockets", - "toml", - "tracing", - "tracing-distributed", - "tracing-futures", - "tracing-log", - "tracing-subscriber 0.3.18", - "url", - "vbs", -] - [[package]] name = "tide-disco" version = "0.8.0" diff --git a/Cargo.toml b/Cargo.toml index f08a7a2a..f1b0e3ec 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,14 +19,14 @@ derivative = "2.2" futures = "0.3" hotshot = { git = "https://github.com/EspressoSystems/HotShot.git", tag = "rc-0.5.57" } hotshot-builder-api = { git = "https://github.com/EspressoSystems/HotShot.git", tag = "rc-0.5.57" } -hotshot-events-service = { git = "https://github.com/EspressoSystems/hotshot-events-service.git", tag = "0.1.26" } +hotshot-events-service = { git = "https://github.com/EspressoSystems/hotshot-events-service.git", tag = "0.1.27" } hotshot-types = { git = "https://github.com/EspressoSystems/HotShot.git", tag = "rc-0.5.57" } serde = { version = "1.0", features = ["derive"] } sha2 = "0.10" snafu = "0.8" -surf-disco = "0.7" +surf-disco = "0.8" tagged-base64 = "0.4" -tide-disco = "0.7" +tide-disco = "0.8" tokio = "1" tracing = "0.1" vbs = "0.1"