2021-10-14 16:46:54 +00:00
|
|
|
[package]
|
|
|
|
name = "mutable_batch"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2018"
|
|
|
|
description = "A mutable arrow RecordBatch"
|
|
|
|
|
|
|
|
[dependencies]
|
2021-10-19 17:14:08 +00:00
|
|
|
arrow = { version = "6.0", features = ["prettyprint"] }
|
2021-10-14 16:46:54 +00:00
|
|
|
arrow_util = { path = "../arrow_util" }
|
2021-10-21 12:30:13 +00:00
|
|
|
chrono = "0.4"
|
2021-10-14 16:46:54 +00:00
|
|
|
data_types = { path = "../data_types" }
|
|
|
|
entry = { path = "../entry" }
|
|
|
|
schema = { path = "../schema" }
|
|
|
|
snafu = "0.6"
|
|
|
|
hashbrown = "0.11"
|
2021-10-20 08:44:14 +00:00
|
|
|
itertools = "0.10"
|
2021-10-14 16:46:54 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
arrow_util = { path = "../arrow_util" }
|
2021-10-21 12:06:26 +00:00
|
|
|
rand = "0.8"
|