2020-06-06 10:04:41 +00:00
|
|
|
[package]
|
|
|
|
name = "delorean_table"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Andrew Lamb <alamb@influxdata.com>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
|
|
snafu = "0.6.2"
|
|
|
|
log = "0.4.8"
|
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-09-24 12:46:54 +00:00
|
|
|
delorean_arrow = { path = "../delorean_arrow" }
|
2020-06-09 15:56:16 +00:00
|
|
|
delorean_table_schema = { path = "../delorean_table_schema" }
|
2020-06-26 11:08:42 +00:00
|
|
|
delorean_tsm = { path = "../delorean_tsm" }
|
2020-06-06 10:04:41 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2020-06-08 20:25:24 +00:00
|
|
|
delorean_test_helpers ={ path = "../delorean_test_helpers" }
|