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" }
|
2023-05-02 17:22:55 +00:00
|
|
|
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" }
|
2022-12-14 16:07:20 +00:00
|
|
|
parking_lot = "0.12"
|
2022-11-23 18:54:54 +00:00
|
|
|
prost = "0.11"
|
2022-11-17 19:35:02 +00:00
|
|
|
snafu = "0.7"
|
|
|
|
snap = "1.0.0"
|
2023-06-28 13:18:08 +00:00
|
|
|
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
|
2023-05-03 10:50:14 +00:00
|
|
|
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" }
|