22 lines
596 B
TOML
22 lines
596 B
TOML
[package]
|
|
name = "write_buffer"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
async-trait = "0.1"
|
|
chrono = "0.4"
|
|
data_types = { path = "../data_types" }
|
|
dotenv = "0.15.0"
|
|
entry = { path = "../entry" }
|
|
futures = "0.3"
|
|
observability_deps = { path = "../observability_deps" }
|
|
parking_lot = "0.11.2"
|
|
rdkafka = "0.26.0"
|
|
tokio = { version = "1.11", features = ["macros", "fs"] }
|
|
uuid = { version = "0.8", features = ["serde", "v4"] }
|
|
|
|
[package.metadata.cargo-udeps.ignore]
|
|
# used within the `maybe_skip_kafka_integration` macro and cannot be detected by a normal analysis pass
|
|
normal = ["dotenv"]
|