diff --git a/.guppy/hakari.toml b/.guppy/hakari.toml index a646e99bf2..48feacdf4d 100644 --- a/.guppy/hakari.toml +++ b/.guppy/hakari.toml @@ -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" }, diff --git a/Cargo.lock b/Cargo.lock index 35234a0bc6..ca28754c8f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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", diff --git a/influxdb_iox_client/Cargo.toml b/influxdb_iox_client/Cargo.toml index e2a0486982..cc23243538 100644 --- a/influxdb_iox_client/Cargo.toml +++ b/influxdb_iox_client/Cargo.toml @@ -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" diff --git a/trogging/Cargo.toml b/trogging/Cargo.toml index 6325e3939f..c44c0bc164 100644 --- a/trogging/Cargo.toml +++ b/trogging/Cargo.toml @@ -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" diff --git a/workspace-hack/Cargo.toml b/workspace-hack/Cargo.toml index 4fc45beaaa..d7bc649014 100644 --- a/workspace-hack/Cargo.toml +++ b/workspace-hack/Cargo.toml @@ -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"] }