28 lines
659 B
TOML
28 lines
659 B
TOML
[package]
|
|
name = "packers"
|
|
version = "0.1.0"
|
|
authors = ["Andrew Lamb <andrew@nerdnetworks.org>"]
|
|
edition = "2021"
|
|
|
|
[dependencies] # In alphabetical order
|
|
arrow = { version = "23.0.0", features = ["prettyprint"] }
|
|
influxdb_tsm = { path = "../influxdb_tsm" }
|
|
schema = { path = "../schema" }
|
|
snafu = "0.7"
|
|
parquet = "23.0.0"
|
|
workspace-hack = { path = "../workspace-hack"}
|
|
|
|
[dev-dependencies] # In alphabetical order
|
|
criterion = { version = "0.4", default-features = false, features = ["rayon"]}
|
|
rand = "0.8.3"
|
|
|
|
[[bench]]
|
|
name = "packers"
|
|
harness = false
|
|
|
|
|
|
[lib]
|
|
# Allow --save-baseline to work
|
|
# https://github.com/bheisler/criterion.rs/issues/275
|
|
bench = false
|