2021-07-14 09:39:49 +00:00
|
|
|
[package]
|
|
|
|
name = "write_buffer"
|
|
|
|
version = "0.1.0"
|
2021-10-25 08:45:44 +00:00
|
|
|
edition = "2021"
|
2021-07-14 09:39:49 +00:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
async-trait = "0.1"
|
2022-05-05 19:29:24 +00:00
|
|
|
data_types = { path = "../data_types" }
|
2021-11-11 12:34:07 +00:00
|
|
|
dml = { path = "../dml" }
|
2022-08-03 12:41:38 +00:00
|
|
|
dotenvy = "0.15.1"
|
2021-07-14 09:39:49 +00:00
|
|
|
futures = "0.3"
|
2022-01-28 16:38:59 +00:00
|
|
|
generated_types = { path = "../generated_types" }
|
2022-02-01 10:07:52 +00:00
|
|
|
hashbrown = "0.12"
|
2021-10-13 10:19:20 +00:00
|
|
|
http = "0.2"
|
2022-04-12 09:37:08 +00:00
|
|
|
httparse = "1.7"
|
2022-05-05 19:29:24 +00:00
|
|
|
iox_time = { path = "../iox_time" }
|
2021-11-16 10:46:04 +00:00
|
|
|
metric = { path = "../metric" }
|
2022-02-01 10:07:52 +00:00
|
|
|
mutable_batch = { path = "../mutable_batch" }
|
2021-11-04 10:20:40 +00:00
|
|
|
mutable_batch_lp = { path = "../mutable_batch_lp" }
|
2021-11-03 15:19:05 +00:00
|
|
|
mutable_batch_pb = { path = "../mutable_batch_pb" }
|
2021-07-19 08:34:58 +00:00
|
|
|
observability_deps = { path = "../observability_deps" }
|
2022-02-01 11:50:42 +00:00
|
|
|
parking_lot = "0.12"
|
2021-10-15 10:12:39 +00:00
|
|
|
pin-project = "1.0"
|
2022-04-20 11:12:17 +00:00
|
|
|
prost = "0.10"
|
2022-08-04 14:32:31 +00:00
|
|
|
rskafka = { git = "https://github.com/influxdata/rskafka.git", rev="9f1e36e8f34a4b0a7323bde623667470b4559a7d", default-features = false, features = ["compression-snappy", "transport-socks5"] }
|
2022-02-01 10:07:52 +00:00
|
|
|
schema = { path = "../schema" }
|
2022-07-14 01:21:43 +00:00
|
|
|
tokio = { version = "1.20", features = ["fs", "macros", "parking_lot", "rt", "sync", "time"] }
|
2022-06-06 14:46:27 +00:00
|
|
|
tokio-util = "0.7.3"
|
2021-10-13 10:19:20 +00:00
|
|
|
trace = { path = "../trace" }
|
|
|
|
trace_http = { path = "../trace_http" }
|
2022-06-17 10:28:28 +00:00
|
|
|
uuid = { version = "1", features = ["v4"] }
|
2021-11-19 14:21:57 +00:00
|
|
|
workspace-hack = { path = "../workspace-hack"}
|
2021-09-22 09:09:39 +00:00
|
|
|
|
2021-10-15 10:12:39 +00:00
|
|
|
[dev-dependencies]
|
|
|
|
tempfile = "3.1.0"
|
2022-01-26 10:28:51 +00:00
|
|
|
test_helpers = { path = "../test_helpers" }
|
2021-10-15 10:12:39 +00:00
|
|
|
|
2021-09-22 09:09:39 +00:00
|
|
|
[package.metadata.cargo-udeps.ignore]
|
|
|
|
# used within the `maybe_skip_kafka_integration` macro and cannot be detected by a normal analysis pass
|
2022-08-03 12:41:38 +00:00
|
|
|
normal = ["dotenvy"]
|