influxdb/mutable_batch/Cargo.toml

20 lines
483 B
TOML
Raw Normal View History

[package]
name = "mutable_batch"
version = "0.1.0"
2021-10-25 08:45:44 +00:00
edition = "2021"
description = "A mutable arrow RecordBatch"
[dependencies]
arrow = { version = "9.1", features = ["prettyprint"] }
arrow_util = { path = "../arrow_util" }
chrono = { version = "0.4", default-features = false }
data_types = { path = "../data_types" }
schema = { path = "../schema" }
2022-01-11 19:22:36 +00:00
snafu = "0.7"
hashbrown = "0.12"
itertools = "0.10"
workspace-hack = { path = "../workspace-hack"}
[dev-dependencies]
rand = "0.8"