22 lines
560 B
TOML
22 lines
560 B
TOML
[package]
|
|
name = "ingest"
|
|
version = "0.1.0"
|
|
authors = ["Andrew Lamb <andrew@nerdnetworks.org>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
snafu = "0.6.2"
|
|
tracing = "0.1"
|
|
|
|
influxdb_line_protocol = { path = "../influxdb_line_protocol" }
|
|
packers = { path = "../packers" }
|
|
data_types = { path = "../data_types" }
|
|
influxdb_tsm = { path = "../influxdb_tsm" }
|
|
arrow_deps = { path = "../arrow_deps" }
|
|
|
|
[dev-dependencies]
|
|
test_helpers ={ path = "../test_helpers" }
|
|
flate2 = "1.0"
|