25 lines
1018 B
TOML
25 lines
1018 B
TOML
[package]
|
|
name = "wal_inspect"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies] # In alphabetical order
|
|
data_types = { version = "0.1.0", path = "../data_types" }
|
|
hashbrown.workspace = true
|
|
mutable_batch = { version = "0.1.0", path = "../mutable_batch" }
|
|
parquet_to_line_protocol = { version = "0.1.0", path = "../parquet_to_line_protocol" }
|
|
schema = { version = "0.1.0", path = "../schema" }
|
|
thiserror = "1.0.48"
|
|
workspace-hack = { version = "0.1", path = "../workspace-hack" }
|
|
|
|
[dev-dependencies] # In alphabetical order
|
|
dml = { version = "0.1.0", path = "../dml" }
|
|
generated_types = { version = "0.1.0", path = "../generated_types" }
|
|
mutable_batch_lp = { path = "../mutable_batch_lp" }
|
|
mutable_batch_pb = { version = "0.1.0", path = "../mutable_batch_pb" }
|
|
test_helpers = { path = "../test_helpers" }
|
|
tokio = { version = "1.32", features = ["macros", "parking_lot", "rt-multi-thread", "sync", "time"] }
|
|
wal = { version = "0.1.0", path = "../wal" }
|