chore(cargo): make prometheus-client a workspace dependency (#3743)

This commit is contained in:
Oliver Gould 2025-03-11 15:38:39 -07:00 committed by GitHub
parent 46babf0849
commit 16b2ff7232
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
10 changed files with 10 additions and 9 deletions

View File

@ -105,6 +105,7 @@ h2 = { version = "0.3" }
http = { version = "0.2" }
http-body = { version = "0.4" }
hyper = { version = "0.14.32", default-features = false }
prometheus-client = { version = "0.23" }
prost = { version = "0.12" }
prost-build = { version = "0.12", default-features = false }
prost-types = { version = "0.12" }

View File

@ -20,7 +20,7 @@ http-body = { workspace = true }
hyper = { workspace = true, features = ["deprecated", "http1", "http2"] }
futures = { version = "0.3", default-features = false }
ipnet = "2.11"
prometheus-client = "0.23"
prometheus-client = { workspace = true }
regex = "1"
serde_json = "1"
thiserror = "2"

View File

@ -26,7 +26,7 @@ linkerd2-proxy-api = { workspace = true, features = ["outbound"] }
once_cell = "1"
parking_lot = "0.12"
pin-project = "1"
prometheus-client = "0.23"
prometheus-client = { workspace = true }
thiserror = "2"
tokio = { version = "1", features = ["sync"] }
tonic = { workspace = true, default-features = false }

View File

@ -7,7 +7,7 @@ publish = false
[dependencies]
bytes = { workspace = true }
httparse = "1"
prometheus-client = "0.23"
prometheus-client = { workspace = true }
thiserror = "2"
tokio = { version = "1", features = ["time"] }
tracing = { version = "0.1" }

View File

@ -19,7 +19,7 @@ http = { workspace = true }
http-body = { workspace = true }
parking_lot = "0.12"
pin-project = "1"
prometheus-client = "0.23"
prometheus-client = { workspace = true }
thiserror = "2"
tokio = { version = "1", features = ["time"] }

View File

@ -7,7 +7,7 @@ edition = "2021"
publish = false
[dependencies]
prometheus-client = "0.23"
prometheus-client = { workspace = true }
thiserror = "2"
tracing = "0.1"
url = "2.5.4"

View File

@ -19,7 +19,7 @@ http-body = { workspace = true }
hyper = { workspace = true, features = ["deprecated", "http1", "http2"] }
kubert-prometheus-process = { version = "0.2", optional = true }
parking_lot = "0.12"
prometheus-client = "0.23"
prometheus-client = { workspace = true }
tokio = { version = "1", features = ["time"] }
tracing = "0.1"

View File

@ -10,7 +10,7 @@ publish = false
ahash = "0.8"
futures = { version = "0.3", default-features = false }
indexmap = "2"
prometheus-client = "0.23"
prometheus-client = { workspace = true }
rand = { version = "0.9", features = ["small_rng"] }
tokio = { version = "1", features = ["rt", "sync", "time"] }
tracing = "0.1"

View File

@ -6,6 +6,6 @@ license = "Apache-2.0"
publish = false
[dependencies]
prometheus-client = "0.23"
prometheus-client = { workspace = true }
linkerd-stack = { path = "../../../stack" }

View File

@ -10,7 +10,7 @@ publish = false
futures = { version = "0.3", default-features = false }
parking_lot = "0.12"
pin-project = "1"
prometheus-client = "0.23"
prometheus-client = { workspace = true }
thiserror = "2"
tokio = { version = "1", features = ["rt", "sync", "time"] }
tokio-util = "0.7"