fix: Exclude crates conductor depends on from workspace hack

pull/24376/head
Carol (Nichols || Goulding) 2021-11-22 11:55:38 -05:00
parent 0ca02ea4d7
commit f3c814e091
No known key found for this signature in database
GPG Key ID: E907EE5A736F87D4
5 changed files with 3 additions and 7 deletions

View File

@ -29,9 +29,11 @@ platforms = [
workspace-members = [
"grpc-router",
"grpc-router-test-gen",
"influxdb_iox_client",
"iox_data_generator",
"mutable_batch_tests",
"server_benchmarks",
"trogging",
]
third-party = [
{ name = "tikv-jemalloc-sys" },

3
Cargo.lock generated
View File

@ -1679,7 +1679,6 @@ dependencies = [
"tokio",
"tonic",
"uuid",
"workspace-hack",
]
[[package]]
@ -4760,7 +4759,6 @@ dependencies = [
"thiserror",
"tracing-log",
"tracing-subscriber",
"workspace-hack",
]
[[package]]
@ -5102,7 +5100,6 @@ dependencies = [
"tower",
"tracing",
"tracing-core",
"tracing-log",
"tracing-subscriber",
"url",
"uuid",

View File

@ -31,7 +31,6 @@ serde_json = { version = "1.0.70", optional = true }
thiserror = "1.0.30"
tonic = { version = "0.5.0" }
uuid = { version = "0.8", features = ["v4"] }
workspace-hack = { path = "../workspace-hack"}
[dev-dependencies] # In alphabetical order
serde_json = "1.0"

View File

@ -14,7 +14,6 @@ thiserror = "1.0.30"
tracing-log = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
structopt = { version = "0.3.25", optional = true }
workspace-hack = { path = "../workspace-hack"}
[dev-dependencies]
synchronized-writer = "1"

View File

@ -51,8 +51,7 @@ tokio-util = { version = "0.6", features = ["codec", "io"] }
tower = { version = "0.4", features = ["balance", "buffer", "discover", "futures-util", "indexmap", "limit", "load", "log", "make", "rand", "ready-cache", "slab", "timeout", "tokio", "tokio-stream", "tokio-util", "tracing", "util"] }
tracing = { version = "0.1", features = ["attributes", "log", "max_level_trace", "release_max_level_debug", "std", "tracing-attributes"] }
tracing-core = { version = "0.1", features = ["lazy_static", "std"] }
tracing-log = { version = "0.1", features = ["log-tracer", "std", "trace-logger"] }
tracing-subscriber = { version = "0.3", features = ["alloc", "ansi", "ansi_term", "env-filter", "fmt", "json", "lazy_static", "matchers", "regex", "registry", "serde", "serde_json", "sharded-slab", "smallvec", "std", "thread_local", "tracing", "tracing-log", "tracing-serde"] }
tracing-subscriber = { version = "0.3", features = ["alloc", "ansi", "ansi_term", "env-filter", "fmt", "lazy_static", "matchers", "regex", "registry", "sharded-slab", "smallvec", "std", "thread_local", "tracing", "tracing-log"] }
url = { version = "2", default-features = false, features = ["serde"] }
uuid = { version = "0.8", features = ["getrandom", "serde", "std", "v4"] }