2020-09-28 17:13:06 +00:00
|
|
|
[package]
|
2020-12-18 18:07:34 +00:00
|
|
|
name = "read_buffer"
|
2020-09-28 17:13:06 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Edd Robinson <me@edd.io>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
2021-01-12 22:49:03 +00:00
|
|
|
# Note this crate is designed to be standalone, and should not depend
|
|
|
|
# on the IOx Query Engine. The rationale is:
|
|
|
|
#
|
|
|
|
# 1. Keep the API clean (and concerns separated) and allow for potential future reuse outside of IOx
|
|
|
|
# 2. Keep change/compile/link time down during development when working on just this crate
|
|
|
|
|
2021-02-04 23:56:02 +00:00
|
|
|
[dependencies] # In alphabetical order
|
2021-07-19 12:49:51 +00:00
|
|
|
arrow = { version = "5.0", features = ["prettyprint"] }
|
2021-05-19 11:13:31 +00:00
|
|
|
arrow_util = { path = "../arrow_util" }
|
2021-07-14 17:34:21 +00:00
|
|
|
chrono = "0.4"
|
2021-07-13 13:15:41 +00:00
|
|
|
croaring = "0.5"
|
2021-03-31 16:26:37 +00:00
|
|
|
data_types = { path = "../data_types" }
|
2021-05-05 16:59:12 +00:00
|
|
|
datafusion = { path = "../datafusion" }
|
2020-12-04 19:19:09 +00:00
|
|
|
either = "1.6.1"
|
2021-05-05 22:32:46 +00:00
|
|
|
hashbrown = "0.11"
|
2021-03-19 16:27:57 +00:00
|
|
|
internal_types = { path = "../internal_types" }
|
2021-06-17 17:56:44 +00:00
|
|
|
itertools = "0.10.1"
|
2021-05-10 21:22:59 +00:00
|
|
|
metrics = { path = "../metrics" }
|
2021-04-26 11:22:21 +00:00
|
|
|
observability_deps = { path = "../observability_deps" }
|
2021-02-04 23:56:02 +00:00
|
|
|
packers = { path = "../packers" }
|
2021-04-14 16:18:45 +00:00
|
|
|
parking_lot = "0.11"
|
2021-02-04 23:56:02 +00:00
|
|
|
permutation = "0.2.5"
|
|
|
|
snafu = "0.6"
|
2020-09-28 17:13:06 +00:00
|
|
|
|
2021-02-04 23:56:02 +00:00
|
|
|
[dev-dependencies] # In alphabetical order
|
2020-12-03 16:04:08 +00:00
|
|
|
criterion = "0.3.3"
|
2021-03-15 15:42:19 +00:00
|
|
|
rand = "0.8.3"
|
|
|
|
rand_distr = "0.4.0"
|
2021-04-16 21:19:20 +00:00
|
|
|
test_helpers = { path = "../test_helpers" }
|
2020-10-01 17:26:31 +00:00
|
|
|
|
2021-01-25 21:06:04 +00:00
|
|
|
[[bench]]
|
|
|
|
name = "database"
|
|
|
|
harness = false
|
|
|
|
|
2020-10-01 17:26:31 +00:00
|
|
|
[[bench]]
|
2021-05-11 20:17:38 +00:00
|
|
|
name = "sum_fixed"
|
2020-10-01 17:26:31 +00:00
|
|
|
harness = false
|
2020-11-10 11:05:21 +00:00
|
|
|
|
|
|
|
[[bench]]
|
2021-05-11 21:39:38 +00:00
|
|
|
name = "string"
|
2020-11-10 11:05:21 +00:00
|
|
|
harness = false
|
2020-12-03 16:04:08 +00:00
|
|
|
|
|
|
|
[[bench]]
|
2021-04-29 18:57:32 +00:00
|
|
|
name = "read"
|
2020-12-03 16:04:08 +00:00
|
|
|
harness = false
|