diff --git a/nodes/mixnode/Cargo.toml b/nodes/mixnode/Cargo.toml index 1a2273c3..37ab350e 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", branch = "main" } -overwatch-derive = { git = "https://github.com/logos-co/Overwatch", branch = "main" } +overwatch-rs = { git = "https://github.com/logos-co/Overwatch", rev = "6e6678b" } +overwatch-derive = { git = "https://github.com/logos-co/Overwatch", rev = "6e6678b" } serde = "1" serde_yaml = "0.9" tracing = "0.1" diff --git a/nodes/nomos-node/Cargo.toml b/nodes/nomos-node/Cargo.toml index 025e8e74..ad83cb74 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", branch = "main" } -overwatch-derive = { git = "https://github.com/logos-co/Overwatch", branch = "main" } +overwatch-rs = { git = "https://github.com/logos-co/Overwatch", rev = "6e6678b" } +overwatch-derive = { git = "https://github.com/logos-co/Overwatch", rev = "6e6678b" } tracing = "0.1" multiaddr = "0.18" nomos-core = { path = "../../nomos-core" } diff --git a/nomos-cli/Cargo.toml b/nomos-cli/Cargo.toml index 93f8dee0..08ca92d9 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", branch = "main" } -overwatch-derive = { git = "https://github.com/logos-co/Overwatch", branch = "main" } +overwatch-rs = { git = "https://github.com/logos-co/Overwatch", rev = "6e6678b" } +overwatch-derive = { git = "https://github.com/logos-co/Overwatch", rev = "6e6678b" } 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 11562005..7106f1cb 100644 --- a/nomos-http-api/Cargo.toml +++ b/nomos-http-api/Cargo.toml @@ -7,8 +7,8 @@ edition = "2021" [dependencies] async-trait = "0.1" -overwatch-rs = { git = "https://github.com/logos-co/Overwatch", branch = "main" } -overwatch-derive = { git = "https://github.com/logos-co/Overwatch", branch = "main" } +overwatch-rs = { git = "https://github.com/logos-co/Overwatch", rev = "6e6678b" } +overwatch-derive = { git = "https://github.com/logos-co/Overwatch", rev = "6e6678b" } tracing = "0.1" [dev-dependencies] diff --git a/nomos-services/consensus/Cargo.toml b/nomos-services/consensus/Cargo.toml index 7142f39e..56a17fc0 100644 --- a/nomos-services/consensus/Cargo.toml +++ b/nomos-services/consensus/Cargo.toml @@ -14,7 +14,7 @@ futures = "0.3" nomos-network = { path = "../network" } nomos-mempool = { path = "../mempool" } nomos-core = { path = "../../nomos-core" } -overwatch-rs = { git = "https://github.com/logos-co/Overwatch", branch = "main" } +overwatch-rs = { git = "https://github.com/logos-co/Overwatch",rev = "6e6678b" } rand_chacha = "0.3" rand = "0.8" serde = { version = "1", features = ["derive"] } diff --git a/nomos-services/data-availability/Cargo.toml b/nomos-services/data-availability/Cargo.toml index 608580b7..0b99aa02 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", branch = "main" } +overwatch-rs = { git = "https://github.com/logos-co/Overwatch", rev = "6e6678b" } 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 45446fda..1bd90774 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", branch = "main" } -overwatch-derive = { git = "https://github.com/logos-co/Overwatch", branch = "main" } +overwatch-rs = { git = "https://github.com/logos-co/Overwatch", rev = "6e6678b" } +overwatch-derive = { git = "https://github.com/logos-co/Overwatch", rev = "6e6678b" } 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 feb91f08..f573f35f 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", branch = "main" } +overwatch-rs = { git = "https://github.com/logos-co/Overwatch", rev = "6e6678b" } 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 f76ffa9e..f6143099 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", branch = "main" } +overwatch-rs = { git = "https://github.com/logos-co/Overwatch", rev = "6e6678b" } 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", branch = "main" } +overwatch-derive = { git = "https://github.com/logos-co/Overwatch", rev = "6e6678b" } tokio = { version = "1", features = ["full"] } blake2 = "0.10" diff --git a/nomos-services/metrics/Cargo.toml b/nomos-services/metrics/Cargo.toml index 9d3ceb93..6463f109 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", branch = "main" } -overwatch-derive = { git = "https://github.com/logos-co/Overwatch", branch = "main" } +overwatch-rs = { git = "https://github.com/logos-co/Overwatch", rev = "6e6678b" } +overwatch-derive = { git = "https://github.com/logos-co/Overwatch", rev = "6e6678b" } 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 13c7f90c..6ff96058 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", branch = "main" } +overwatch-rs = { git = "https://github.com/logos-co/Overwatch", rev = "6e6678b" } 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 e6850c54..ebb7ae3f 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", branch = "main" } +overwatch-rs = { git = "https://github.com/logos-co/Overwatch", rev = "6e6678b" } serde = "1.0" sled = { version = "0.34", optional = true } thiserror = "1.0" diff --git a/tests/Cargo.toml b/tests/Cargo.toml index b51a9320..8f761c8e 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", branch = "main" } +overwatch-rs = { git = "https://github.com/logos-co/Overwatch", rev = "6e6678b" } nomos-core = { path = "../nomos-core" } consensus-engine = { path = "../consensus-engine", features = ["serde"] } nomos-mempool = { path = "../nomos-services/mempool", features = ["mock", "libp2p"] }