2021-10-14 16:46:54 +00:00
|
|
|
[package]
|
|
|
|
name = "mutable_batch"
|
|
|
|
version = "0.1.0"
|
2021-10-25 08:45:44 +00:00
|
|
|
edition = "2021"
|
2021-10-14 16:46:54 +00:00
|
|
|
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" }
|
|
|
|
schema = { path = "../schema" }
|
|
|
|
snafu = "0.6"
|
2021-10-29 15:13:05 +00:00
|
|
|
trace = { path = "../trace" }
|
|
|
|
time = { path = "../time" }
|
2021-10-14 16:46:54 +00:00
|
|
|
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"
|