fix: Exclude influxdb2_client from the workspace hack crate
This enables the removal of the futures and futures-io crates. Connects to #3117.pull/24376/head
parent
8ad2b5e9fd
commit
ddc1504135
|
@ -30,6 +30,7 @@ workspace-members = [
|
|||
"grpc-router",
|
||||
"grpc-router-test-gen",
|
||||
"influxdb_iox_client",
|
||||
"influxdb2_client",
|
||||
"iox_data_generator",
|
||||
"mutable_batch_tests",
|
||||
"server_benchmarks",
|
||||
|
|
|
@ -1539,7 +1539,6 @@ dependencies = [
|
|||
"tokio",
|
||||
"url",
|
||||
"uuid",
|
||||
"workspace-hack",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
@ -5049,10 +5048,8 @@ dependencies = [
|
|||
"cc",
|
||||
"chrono",
|
||||
"either",
|
||||
"futures",
|
||||
"futures-channel",
|
||||
"futures-core",
|
||||
"futures-io",
|
||||
"futures-sink",
|
||||
"futures-task",
|
||||
"futures-util",
|
||||
|
|
|
@ -13,7 +13,6 @@ serde_json = "1.0.72"
|
|||
snafu = "0.6.6"
|
||||
url = "2.1.1"
|
||||
uuid = { version = "0.8", features = ["v4"] }
|
||||
workspace-hack = { path = "../workspace-hack"}
|
||||
|
||||
[dev-dependencies] # In alphabetical order
|
||||
mockito = "0.30"
|
||||
|
|
|
@ -17,10 +17,8 @@ ahash = { version = "0.7", features = ["std"] }
|
|||
bytes = { version = "1", features = ["std"] }
|
||||
chrono = { version = "0.4", features = ["clock", "libc", "oldtime", "serde", "std", "time", "winapi"] }
|
||||
either = { version = "1", features = ["use_std"] }
|
||||
futures = { version = "0.3", features = ["alloc", "async-await", "executor", "futures-executor", "std"] }
|
||||
futures-channel = { version = "0.3", features = ["alloc", "futures-sink", "sink", "std"] }
|
||||
futures-core = { version = "0.3", features = ["alloc", "std"] }
|
||||
futures-io = { version = "0.3", default-features = false, features = ["std"] }
|
||||
futures-sink = { version = "0.3", features = ["alloc", "std"] }
|
||||
futures-task = { version = "0.3", default-features = false, features = ["alloc", "std"] }
|
||||
futures-util = { version = "0.3", features = ["alloc", "async-await", "async-await-macro", "channel", "futures-channel", "futures-io", "futures-macro", "futures-sink", "io", "memchr", "proc-macro-hack", "proc-macro-nested", "sink", "slab", "std"] }
|
||||
|
|
Loading…
Reference in New Issue