move metrics dependency to workspace Cargo.toml
This commit is contained in:
		@@ -8,6 +8,7 @@ members = [
 | 
				
			|||||||
anyhow = "1"
 | 
					anyhow = "1"
 | 
				
			||||||
fred = { version = "5.2.0", default-features = false, features = ["tracing", "pool-prefer-active"] }
 | 
					fred = { version = "5.2.0", default-features = false, features = ["tracing", "pool-prefer-active"] }
 | 
				
			||||||
lazy_static = "1.4.0"
 | 
					lazy_static = "1.4.0"
 | 
				
			||||||
 | 
					metrics = "0.20.1"
 | 
				
			||||||
serde = "1.0.152"
 | 
					serde = "1.0.152"
 | 
				
			||||||
tokio = { version = "1.25.0", features = ["full"] }
 | 
					tokio = { version = "1.25.0", features = ["full"] }
 | 
				
			||||||
tracing = "0.1.37"
 | 
					tracing = "0.1.37"
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -8,7 +8,7 @@ anyhow = { workspace = true }
 | 
				
			|||||||
config = "0.13.3"
 | 
					config = "0.13.3"
 | 
				
			||||||
gethostname = "0.4.1"
 | 
					gethostname = "0.4.1"
 | 
				
			||||||
lazy_static = { workspace = true }
 | 
					lazy_static = { workspace = true }
 | 
				
			||||||
metrics = "0.20.1"
 | 
					metrics = { workspace = true }
 | 
				
			||||||
metrics-exporter-prometheus = { version = "0.11.0", default-features = false, features = ["tokio", "http-listener", "tracing"] }
 | 
					metrics-exporter-prometheus = { version = "0.11.0", default-features = false, features = ["tokio", "http-listener", "tracing"] }
 | 
				
			||||||
serde = { workspace = true }
 | 
					serde = { workspace = true }
 | 
				
			||||||
tokio = { workspace = true }
 | 
					tokio = { workspace = true }
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -9,9 +9,9 @@ axum = "0.6.4"
 | 
				
			|||||||
fred = { workspace = true }
 | 
					fred = { workspace = true }
 | 
				
			||||||
http = "0.2.8"
 | 
					http = "0.2.8"
 | 
				
			||||||
hyper-reverse-proxy = "0.5.1"
 | 
					hyper-reverse-proxy = "0.5.1"
 | 
				
			||||||
lazy_static = "1.4.0"
 | 
					lazy_static = { workspace = true }
 | 
				
			||||||
libpk = { path = "../../lib/libpk" }
 | 
					libpk = { path = "../../lib/libpk" }
 | 
				
			||||||
metrics = "0.20.1"
 | 
					metrics = { workspace = true }
 | 
				
			||||||
tokio = { workspace = true }
 | 
					tokio = { workspace = true }
 | 
				
			||||||
tower = "0.4.13"
 | 
					tower = "0.4.13"
 | 
				
			||||||
tracing = { workspace = true }
 | 
					tracing = { workspace = true }
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user