2021-10-14 16:46:54 +00:00
|
|
|
[package]
|
|
|
|
name = "mutable_batch"
|
|
|
|
description = "A mutable arrow RecordBatch"
|
2022-09-26 14:43:00 +00:00
|
|
|
version.workspace = true
|
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
2021-10-14 16:46:54 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2022-10-24 17:58:38 +00:00
|
|
|
arrow = { workspace = true, features = ["prettyprint"] }
|
2021-10-14 16:46:54 +00:00
|
|
|
arrow_util = { path = "../arrow_util" }
|
2021-11-22 22:06:04 +00:00
|
|
|
chrono = { version = "0.4", default-features = false }
|
2022-05-05 19:29:24 +00:00
|
|
|
data_types = { path = "../data_types" }
|
2022-05-05 15:50:06 +00:00
|
|
|
iox_time = { path = "../iox_time" }
|
2021-10-14 16:46:54 +00:00
|
|
|
schema = { path = "../schema" }
|
2022-01-11 19:22:36 +00:00
|
|
|
snafu = "0.7"
|
2022-11-11 17:12:30 +00:00
|
|
|
hashbrown = { workspace = true }
|
2021-10-20 08:44:14 +00:00
|
|
|
itertools = "0.10"
|
2021-11-19 14:21:57 +00:00
|
|
|
workspace-hack = { path = "../workspace-hack"}
|
2021-10-14 16:46:54 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-12-16 17:20:16 +00:00
|
|
|
mutable_batch_lp = { path = "../mutable_batch_lp" }
|
2021-10-21 12:06:26 +00:00
|
|
|
rand = "0.8"
|