From 4a562ec188c4fde3b7cd76b3186a58a728c1aaa0 Mon Sep 17 00:00:00 2001 From: danielsanchezq Date: Mon, 9 Oct 2023 16:20:29 +0200 Subject: [PATCH] Update deps --- nodes/mixnode/Cargo.toml | 4 ++-- nodes/nomos-node/Cargo.toml | 4 ++-- nomos-cli/Cargo.toml | 4 ++-- nomos-http-api/Cargo.toml | 4 ++-- nomos-services/data-availability/Cargo.toml | 2 +- nomos-services/http/Cargo.toml | 4 ++-- nomos-services/log/Cargo.toml | 2 +- nomos-services/mempool/Cargo.toml | 4 ++-- nomos-services/metrics/Cargo.toml | 4 ++-- nomos-services/network/Cargo.toml | 2 +- nomos-services/storage/Cargo.toml | 2 +- tests/Cargo.toml | 2 +- 12 files changed, 19 insertions(+), 19 deletions(-) diff --git a/nodes/mixnode/Cargo.toml b/nodes/mixnode/Cargo.toml index 37ab350e..d18ff163 100644 --- a/nodes/mixnode/Cargo.toml +++ b/nodes/mixnode/Cargo.toml @@ -9,8 +9,8 @@ mixnet-node = { path = "../../mixnet/node" } nomos-log = { path = "../../nomos-services/log" } clap = { version = "4", features = ["derive"] } color-eyre = "0.6.0" -overwatch-rs = { git = "https://github.com/logos-co/Overwatch", rev = "6e6678b" } -overwatch-derive = { git = "https://github.com/logos-co/Overwatch", rev = "6e6678b" } +overwatch-rs = { git = "https://github.com/logos-co/Overwatch", rev = "ac28d01" } +overwatch-derive = { git = "https://github.com/logos-co/Overwatch", rev = "ac28d01" } serde = "1" serde_yaml = "0.9" tracing = "0.1" diff --git a/nodes/nomos-node/Cargo.toml b/nodes/nomos-node/Cargo.toml index 11da550c..0bb83c52 100644 --- a/nodes/nomos-node/Cargo.toml +++ b/nodes/nomos-node/Cargo.toml @@ -14,8 +14,8 @@ chrono = "0.4" futures = "0.3" http = "0.2.9" hex = "0.4.3" -overwatch-rs = { git = "https://github.com/logos-co/Overwatch", rev = "6e6678b" } -overwatch-derive = { git = "https://github.com/logos-co/Overwatch", rev = "6e6678b" } +overwatch-rs = { git = "https://github.com/logos-co/Overwatch", rev = "ac28d01" } +overwatch-derive = { git = "https://github.com/logos-co/Overwatch", rev = "ac28d01" } tracing = "0.1" multiaddr = "0.18" nomos-core = { path = "../../nomos-core" } diff --git a/nomos-cli/Cargo.toml b/nomos-cli/Cargo.toml index f89df15a..0032cea0 100644 --- a/nomos-cli/Cargo.toml +++ b/nomos-cli/Cargo.toml @@ -15,8 +15,8 @@ clap = {version = "4", features = ["derive"] } serde_yaml = "0.9" futures = "0.3" tokio = { version = "1", features = ["sync"] } -overwatch-rs = { git = "https://github.com/logos-co/Overwatch", rev = "6e6678b" } -overwatch-derive = { git = "https://github.com/logos-co/Overwatch", rev = "6e6678b" } +overwatch-rs = { git = "https://github.com/logos-co/Overwatch", rev = "ac28d01" } +overwatch-derive = { git = "https://github.com/logos-co/Overwatch", rev = "ac28d01" } nomos-network = { path = "../nomos-services/network", features = ["libp2p"] } nomos-da = { path = "../nomos-services/data-availability", features = ["libp2p"] } nomos-libp2p = { path = "../nomos-libp2p"} diff --git a/nomos-http-api/Cargo.toml b/nomos-http-api/Cargo.toml index 88ef6ab7..da372e15 100644 --- a/nomos-http-api/Cargo.toml +++ b/nomos-http-api/Cargo.toml @@ -8,8 +8,8 @@ axum = ["dep:axum", "dep:hyper", "utoipa-swagger-ui/axum"] [dependencies] async-trait = "0.1" -overwatch-rs = { git = "https://github.com/logos-co/Overwatch", rev = "6e6678b" } -overwatch-derive = { git = "https://github.com/logos-co/Overwatch", rev = "6e6678b" } +overwatch-rs = { git = "https://github.com/logos-co/Overwatch", rev = "ac28d01" } +overwatch-derive = { git = "https://github.com/logos-co/Overwatch", rev = "ac28d01" } tracing = "0.1" utoipa = "4.0" utoipa-swagger-ui = { version = "4.0" } diff --git a/nomos-services/data-availability/Cargo.toml b/nomos-services/data-availability/Cargo.toml index 0b99aa02..e4cbac7c 100644 --- a/nomos-services/data-availability/Cargo.toml +++ b/nomos-services/data-availability/Cargo.toml @@ -11,7 +11,7 @@ futures = "0.3" moka = { version = "0.11", features = ["future"] } nomos-core = { path = "../../nomos-core" } nomos-network = { path = "../network" } -overwatch-rs = { git = "https://github.com/logos-co/Overwatch", rev = "6e6678b" } +overwatch-rs = { git = "https://github.com/logos-co/Overwatch", rev = "ac28d01" } serde = "1.0" tracing = "0.1" tokio = { version = "1", features = ["sync", "macros"] } diff --git a/nomos-services/http/Cargo.toml b/nomos-services/http/Cargo.toml index 1bd90774..06c223bb 100644 --- a/nomos-services/http/Cargo.toml +++ b/nomos-services/http/Cargo.toml @@ -25,8 +25,8 @@ clap = { version = "4", features = ["derive", "env"], optional = true } futures = "0.3" http = "0.2.9" hyper = { version = "0.14", optional = true } -overwatch-rs = { git = "https://github.com/logos-co/Overwatch", rev = "6e6678b" } -overwatch-derive = { git = "https://github.com/logos-co/Overwatch", rev = "6e6678b" } +overwatch-rs = { git = "https://github.com/logos-co/Overwatch", rev = "ac28d01" } +overwatch-derive = { git = "https://github.com/logos-co/Overwatch", rev = "ac28d01" } parking_lot = { version = "0.12", optional = true } serde = { version = "1.0", features = ["derive"] } serde_json = { version = "1.0", optional = true } diff --git a/nomos-services/log/Cargo.toml b/nomos-services/log/Cargo.toml index f573f35f..68b639b8 100644 --- a/nomos-services/log/Cargo.toml +++ b/nomos-services/log/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" [dependencies] async-trait = "0.1" -overwatch-rs = { git = "https://github.com/logos-co/Overwatch", rev = "6e6678b" } +overwatch-rs = { git = "https://github.com/logos-co/Overwatch", rev = "ac28d01" } serde = { version = "1.0", features = ["derive"] } tracing = "0.1" tracing-appender = "0.2" diff --git a/nomos-services/mempool/Cargo.toml b/nomos-services/mempool/Cargo.toml index f6143099..bc42fd89 100644 --- a/nomos-services/mempool/Cargo.toml +++ b/nomos-services/mempool/Cargo.toml @@ -12,7 +12,7 @@ futures = "0.3" linked-hash-map = { version = "0.5.6", optional = true } nomos-network = { path = "../network" } nomos-core = { path = "../../nomos-core" } -overwatch-rs = { git = "https://github.com/logos-co/Overwatch", rev = "6e6678b" } +overwatch-rs = { git = "https://github.com/logos-co/Overwatch", rev = "ac28d01" } rand = { version = "0.8", optional = true } serde = { version = "1.0", features = ["derive"] } thiserror = "1.0" @@ -23,7 +23,7 @@ chrono = "0.4" [dev-dependencies] nomos-log = { path = "../log" } -overwatch-derive = { git = "https://github.com/logos-co/Overwatch", rev = "6e6678b" } +overwatch-derive = { git = "https://github.com/logos-co/Overwatch", rev = "ac28d01" } tokio = { version = "1", features = ["full"] } blake2 = "0.10" diff --git a/nomos-services/metrics/Cargo.toml b/nomos-services/metrics/Cargo.toml index 6463f109..1f430ea2 100644 --- a/nomos-services/metrics/Cargo.toml +++ b/nomos-services/metrics/Cargo.toml @@ -15,8 +15,8 @@ async-trait = "0.1" bytes = "1.3" clap = { version = "4", features = ["derive", "env"], optional = true } nomos-http = { path = "../http", optional = true } -overwatch-rs = { git = "https://github.com/logos-co/Overwatch", rev = "6e6678b" } -overwatch-derive = { git = "https://github.com/logos-co/Overwatch", rev = "6e6678b" } +overwatch-rs = { git = "https://github.com/logos-co/Overwatch", rev = "ac28d01" } +overwatch-derive = { git = "https://github.com/logos-co/Overwatch", rev = "ac28d01" } once_cell = "1.16" parking_lot = "0.12" prometheus = "0.13" diff --git a/nomos-services/network/Cargo.toml b/nomos-services/network/Cargo.toml index 6ff96058..09263e4d 100644 --- a/nomos-services/network/Cargo.toml +++ b/nomos-services/network/Cargo.toml @@ -10,7 +10,7 @@ async-trait = "0.1" bytes = "1.2" chrono = { version = "0.4", optional = true } humantime-serde = { version = "1", optional = true } -overwatch-rs = { git = "https://github.com/logos-co/Overwatch", rev = "6e6678b" } +overwatch-rs = { git = "https://github.com/logos-co/Overwatch", rev = "ac28d01" } multiaddr = "0.15" serde = { version = "1.0", features = ["derive"] } sscanf = { version = "0.4", optional = true } diff --git a/nomos-services/storage/Cargo.toml b/nomos-services/storage/Cargo.toml index ebb7ae3f..6b348732 100644 --- a/nomos-services/storage/Cargo.toml +++ b/nomos-services/storage/Cargo.toml @@ -9,7 +9,7 @@ edition = "2021" async-trait = "0.1" tokio = { version = "1", features = ["sync"] } bytes = "1.2" -overwatch-rs = { git = "https://github.com/logos-co/Overwatch", rev = "6e6678b" } +overwatch-rs = { git = "https://github.com/logos-co/Overwatch", rev = "ac28d01" } serde = "1.0" sled = { version = "0.34", optional = true } thiserror = "1.0" diff --git a/tests/Cargo.toml b/tests/Cargo.toml index 8f761c8e..c63be655 100644 --- a/tests/Cargo.toml +++ b/tests/Cargo.toml @@ -10,7 +10,7 @@ nomos-consensus = { path = "../nomos-services/consensus" } nomos-network = { path = "../nomos-services/network", features = ["libp2p"]} nomos-log = { path = "../nomos-services/log" } nomos-http = { path = "../nomos-services/http", features = ["http"] } -overwatch-rs = { git = "https://github.com/logos-co/Overwatch", rev = "6e6678b" } +overwatch-rs = { git = "https://github.com/logos-co/Overwatch", rev = "ac28d01" } nomos-core = { path = "../nomos-core" } consensus-engine = { path = "../consensus-engine", features = ["serde"] } nomos-mempool = { path = "../nomos-services/mempool", features = ["mock", "libp2p"] }