influxdb/wal/Cargo.toml

33 lines
1013 B
TOML
Raw Normal View History

2022-11-17 19:35:02 +00:00
[package]
name = "wal"
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
[dependencies] # In alphabetical order
async-trait = "0.1"
bytes = "1.4"
2022-11-17 19:35:02 +00:00
byteorder = "1.3.4"
crc32fast = "1.2.0"
data_types = { path = "../data_types" }
futures = "0.3"
generated_types = { path = "../generated_types" }
2022-11-17 20:53:11 +00:00
observability_deps = { path = "../observability_deps" }
once_cell = { version = "1.17", features = ["parking_lot"] }
parking_lot = "0.12"
prost = "0.11"
regex = "1.7.3"
2022-11-17 19:35:02 +00:00
serde = { version = "1.0", features = ["derive"] }
snafu = "0.7"
snap = "1.0.0"
tokio = { version = "1.27", features = ["macros", "fs", "io-util", "parking_lot", "rt-multi-thread", "sync", "time"] }
2022-11-17 19:35:02 +00:00
tokio-util = "0.7"
2023-02-24 18:02:23 +00:00
workspace-hack = { version = "0.1", path = "../workspace-hack" }
2022-11-17 19:35:02 +00:00
[dev-dependencies] # In alphabetical order
2022-11-17 20:53:11 +00:00
dml = { path = "../dml" }
mutable_batch_lp = { path = "../mutable_batch_lp" }
2022-11-17 19:35:02 +00:00
mutable_batch_pb = { path = "../mutable_batch_pb" }
test_helpers = { path = "../test_helpers" }