2020-06-06 10:04:41 +00:00
|
|
|
[package]
|
2020-11-05 13:52:22 +00:00
|
|
|
name = "packers"
|
2020-06-06 10:04:41 +00:00
|
|
|
version = "0.1.0"
|
2020-11-24 19:19:29 +00:00
|
|
|
authors = ["Andrew Lamb <andrew@nerdnetworks.org>"]
|
2021-10-25 08:45:44 +00:00
|
|
|
edition = "2021"
|
2020-06-06 10:04:41 +00:00
|
|
|
|
2021-02-04 23:56:02 +00:00
|
|
|
[dependencies] # In alphabetical order
|
2022-09-27 12:50:54 +00:00
|
|
|
arrow = { version = "23.0.0", features = ["prettyprint"] }
|
2020-11-05 19:35:38 +00:00
|
|
|
influxdb_tsm = { path = "../influxdb_tsm" }
|
2021-10-11 09:45:08 +00:00
|
|
|
schema = { path = "../schema" }
|
2022-01-11 19:22:36 +00:00
|
|
|
snafu = "0.7"
|
2022-09-27 12:50:54 +00:00
|
|
|
parquet = "23.0.0"
|
2021-11-19 14:21:57 +00:00
|
|
|
workspace-hack = { path = "../workspace-hack"}
|
2020-06-06 10:04:41 +00:00
|
|
|
|
2021-02-04 23:56:02 +00:00
|
|
|
[dev-dependencies] # In alphabetical order
|
2022-09-12 08:47:35 +00:00
|
|
|
criterion = { version = "0.4", default-features = false, features = ["rayon"]}
|
2021-03-15 15:42:19 +00:00
|
|
|
rand = "0.8.3"
|
2021-08-19 11:09:34 +00:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "packers"
|
|
|
|
harness = false
|
2022-08-16 08:11:23 +00:00
|
|
|
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
# Allow --save-baseline to work
|
|
|
|
# https://github.com/bheisler/criterion.rs/issues/275
|
|
|
|
bench = false
|