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>"]
|
2020-06-06 10:04:41 +00:00
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
|
|
snafu = "0.6.2"
|
2020-10-26 10:15:47 +00:00
|
|
|
tracing = "0.1"
|
2020-08-04 20:30:42 +00:00
|
|
|
rand = "0.7.3"
|
2020-07-16 12:43:06 +00:00
|
|
|
human_format = "1.0.3"
|
2020-07-30 11:02:53 +00:00
|
|
|
|
2020-11-05 18:44:36 +00:00
|
|
|
arrow_deps = { path = "../arrow_deps" }
|
2020-11-05 11:17:20 +00:00
|
|
|
data_types = { path = "../data_types" }
|
2020-11-05 19:35:38 +00:00
|
|
|
influxdb_tsm = { path = "../influxdb_tsm" }
|
2020-06-06 10:04:41 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2020-11-05 18:44:36 +00:00
|
|
|
test_helpers ={ path = "../test_helpers" }
|