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"
|
|
|
|
data_types = { path = "../data_types" }
|
2021-11-11 12:34:07 +00:00
|
|
|
dml = { path = "../dml" }
|
2021-09-06 08:54:20 +00:00
|
|
|
dotenv = "0.15.0"
|
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"
|
2021-10-15 10:12:39 +00:00
|
|
|
httparse = "1.5"
|
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-01-13 17:07:15 +00:00
|
|
|
prost = "0.9"
|
2022-02-03 12:52:42 +00:00
|
|
|
rskafka = { git = "https://github.com/influxdata/rskafka.git", rev="1de77597e2f3d791322ade01ad63cad748880db3", default-features = false, features = ["compression-snappy"] }
|
2022-02-01 10:07:52 +00:00
|
|
|
schema = { path = "../schema" }
|
2021-10-12 10:32:34 +00:00
|
|
|
time = { path = "../time" }
|
2021-12-02 19:46:26 +00:00
|
|
|
tokio = { version = "1.13", features = ["fs", "macros", "parking_lot", "rt", "sync", "time"] }
|
2021-11-24 11:09:52 +00:00
|
|
|
tokio-util = "0.6.9"
|
2021-10-13 10:19:20 +00:00
|
|
|
trace = { path = "../trace" }
|
|
|
|
trace_http = { path = "../trace_http" }
|
2021-12-03 16:50:46 +00:00
|
|
|
uuid = { version = "0.8", 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
|
|
|
|
normal = ["dotenv"]
|