influxdb/wal/Cargo.toml

29 lines
952 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
byteorder = "1.3.4"
crc32fast = "1.2.0"
data_types = { path = "../data_types" }
generated_types = { path = "../generated_types" }
hashbrown.workspace = true
mutable_batch = { version = "0.1.0", path = "../mutable_batch" }
mutable_batch_pb = { version = "0.1.0", path = "../mutable_batch_pb" }
2022-11-17 20:53:11 +00:00
observability_deps = { path = "../observability_deps" }
parking_lot = "0.12"
prost = "0.11"
2022-11-17 19:35:02 +00:00
snafu = "0.7"
snap = "1.0.0"
tokio = { version = "1.29", features = ["macros", "fs", "io-util", "parking_lot", "rt-multi-thread", "sync", "time"] }
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
assert_matches = "1.5.0"
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
test_helpers = { path = "../test_helpers" }