29 lines
952 B
TOML
29 lines
952 B
TOML
[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" }
|
|
observability_deps = { path = "../observability_deps" }
|
|
parking_lot = "0.12"
|
|
prost = "0.11"
|
|
snafu = "0.7"
|
|
snap = "1.0.0"
|
|
tokio = { version = "1.29", features = ["macros", "fs", "io-util", "parking_lot", "rt-multi-thread", "sync", "time"] }
|
|
workspace-hack = { version = "0.1", path = "../workspace-hack" }
|
|
|
|
[dev-dependencies] # In alphabetical order
|
|
assert_matches = "1.5.0"
|
|
dml = { path = "../dml" }
|
|
mutable_batch_lp = { path = "../mutable_batch_lp" }
|
|
test_helpers = { path = "../test_helpers" }
|