chore(cargo): make prometheus-client a workspace dependency (#3743)
This commit is contained in:
parent
46babf0849
commit
16b2ff7232
|
|
@ -105,6 +105,7 @@ h2 = { version = "0.3" }
|
||||||
http = { version = "0.2" }
|
http = { version = "0.2" }
|
||||||
http-body = { version = "0.4" }
|
http-body = { version = "0.4" }
|
||||||
hyper = { version = "0.14.32", default-features = false }
|
hyper = { version = "0.14.32", default-features = false }
|
||||||
|
prometheus-client = { version = "0.23" }
|
||||||
prost = { version = "0.12" }
|
prost = { version = "0.12" }
|
||||||
prost-build = { version = "0.12", default-features = false }
|
prost-build = { version = "0.12", default-features = false }
|
||||||
prost-types = { version = "0.12" }
|
prost-types = { version = "0.12" }
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@ http-body = { workspace = true }
|
||||||
hyper = { workspace = true, features = ["deprecated", "http1", "http2"] }
|
hyper = { workspace = true, features = ["deprecated", "http1", "http2"] }
|
||||||
futures = { version = "0.3", default-features = false }
|
futures = { version = "0.3", default-features = false }
|
||||||
ipnet = "2.11"
|
ipnet = "2.11"
|
||||||
prometheus-client = "0.23"
|
prometheus-client = { workspace = true }
|
||||||
regex = "1"
|
regex = "1"
|
||||||
serde_json = "1"
|
serde_json = "1"
|
||||||
thiserror = "2"
|
thiserror = "2"
|
||||||
|
|
|
||||||
|
|
@ -26,7 +26,7 @@ linkerd2-proxy-api = { workspace = true, features = ["outbound"] }
|
||||||
once_cell = "1"
|
once_cell = "1"
|
||||||
parking_lot = "0.12"
|
parking_lot = "0.12"
|
||||||
pin-project = "1"
|
pin-project = "1"
|
||||||
prometheus-client = "0.23"
|
prometheus-client = { workspace = true }
|
||||||
thiserror = "2"
|
thiserror = "2"
|
||||||
tokio = { version = "1", features = ["sync"] }
|
tokio = { version = "1", features = ["sync"] }
|
||||||
tonic = { workspace = true, default-features = false }
|
tonic = { workspace = true, default-features = false }
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@ publish = false
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bytes = { workspace = true }
|
bytes = { workspace = true }
|
||||||
httparse = "1"
|
httparse = "1"
|
||||||
prometheus-client = "0.23"
|
prometheus-client = { workspace = true }
|
||||||
thiserror = "2"
|
thiserror = "2"
|
||||||
tokio = { version = "1", features = ["time"] }
|
tokio = { version = "1", features = ["time"] }
|
||||||
tracing = { version = "0.1" }
|
tracing = { version = "0.1" }
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,7 @@ http = { workspace = true }
|
||||||
http-body = { workspace = true }
|
http-body = { workspace = true }
|
||||||
parking_lot = "0.12"
|
parking_lot = "0.12"
|
||||||
pin-project = "1"
|
pin-project = "1"
|
||||||
prometheus-client = "0.23"
|
prometheus-client = { workspace = true }
|
||||||
thiserror = "2"
|
thiserror = "2"
|
||||||
tokio = { version = "1", features = ["time"] }
|
tokio = { version = "1", features = ["time"] }
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@ edition = "2021"
|
||||||
publish = false
|
publish = false
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
prometheus-client = "0.23"
|
prometheus-client = { workspace = true }
|
||||||
thiserror = "2"
|
thiserror = "2"
|
||||||
tracing = "0.1"
|
tracing = "0.1"
|
||||||
url = "2.5.4"
|
url = "2.5.4"
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,7 @@ http-body = { workspace = true }
|
||||||
hyper = { workspace = true, features = ["deprecated", "http1", "http2"] }
|
hyper = { workspace = true, features = ["deprecated", "http1", "http2"] }
|
||||||
kubert-prometheus-process = { version = "0.2", optional = true }
|
kubert-prometheus-process = { version = "0.2", optional = true }
|
||||||
parking_lot = "0.12"
|
parking_lot = "0.12"
|
||||||
prometheus-client = "0.23"
|
prometheus-client = { workspace = true }
|
||||||
tokio = { version = "1", features = ["time"] }
|
tokio = { version = "1", features = ["time"] }
|
||||||
tracing = "0.1"
|
tracing = "0.1"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@ publish = false
|
||||||
ahash = "0.8"
|
ahash = "0.8"
|
||||||
futures = { version = "0.3", default-features = false }
|
futures = { version = "0.3", default-features = false }
|
||||||
indexmap = "2"
|
indexmap = "2"
|
||||||
prometheus-client = "0.23"
|
prometheus-client = { workspace = true }
|
||||||
rand = { version = "0.9", features = ["small_rng"] }
|
rand = { version = "0.9", features = ["small_rng"] }
|
||||||
tokio = { version = "1", features = ["rt", "sync", "time"] }
|
tokio = { version = "1", features = ["rt", "sync", "time"] }
|
||||||
tracing = "0.1"
|
tracing = "0.1"
|
||||||
|
|
|
||||||
|
|
@ -6,6 +6,6 @@ license = "Apache-2.0"
|
||||||
publish = false
|
publish = false
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
prometheus-client = "0.23"
|
prometheus-client = { workspace = true }
|
||||||
|
|
||||||
linkerd-stack = { path = "../../../stack" }
|
linkerd-stack = { path = "../../../stack" }
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@ publish = false
|
||||||
futures = { version = "0.3", default-features = false }
|
futures = { version = "0.3", default-features = false }
|
||||||
parking_lot = "0.12"
|
parking_lot = "0.12"
|
||||||
pin-project = "1"
|
pin-project = "1"
|
||||||
prometheus-client = "0.23"
|
prometheus-client = { workspace = true }
|
||||||
thiserror = "2"
|
thiserror = "2"
|
||||||
tokio = { version = "1", features = ["rt", "sync", "time"] }
|
tokio = { version = "1", features = ["rt", "sync", "time"] }
|
||||||
tokio-util = "0.7"
|
tokio-util = "0.7"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue