2019-11-22 21:59:04 +00:00
|
|
|
[package]
|
|
|
|
name = "delorean"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Paul Dix <paul@pauldix.net>"]
|
|
|
|
edition = "2018"
|
2020-04-15 20:00:54 +00:00
|
|
|
default-run = "delorean"
|
2019-11-22 21:59:04 +00:00
|
|
|
|
2020-04-23 15:26:37 +00:00
|
|
|
[workspace]
|
2020-05-01 16:52:00 +00:00
|
|
|
members = [
|
2020-06-03 22:29:57 +00:00
|
|
|
"delorean_ingest",
|
2020-05-22 20:46:02 +00:00
|
|
|
"delorean_line_parser",
|
2020-06-08 20:25:24 +00:00
|
|
|
"delorean_parquet",
|
2020-06-02 11:33:43 +00:00
|
|
|
"delorean_storage_tool",
|
2020-06-06 10:04:41 +00:00
|
|
|
"delorean_table",
|
2020-05-01 16:52:00 +00:00
|
|
|
"delorean_test_helpers",
|
2020-06-05 20:22:27 +00:00
|
|
|
"delorean_generated_types",
|
2020-05-01 16:52:00 +00:00
|
|
|
"delorean_utilities",
|
2020-05-11 19:09:10 +00:00
|
|
|
"delorean_wal",
|
2020-06-03 12:39:35 +00:00
|
|
|
"line_protocol_schema",
|
2020-05-01 16:52:00 +00:00
|
|
|
]
|
2019-11-22 21:59:04 +00:00
|
|
|
|
2020-03-27 20:39:22 +00:00
|
|
|
[profile.release]
|
|
|
|
debug = true
|
|
|
|
|
2019-11-22 21:59:04 +00:00
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2020-06-05 20:22:27 +00:00
|
|
|
delorean_generated_types = { path = "delorean_generated_types" }
|
2020-05-22 20:46:02 +00:00
|
|
|
delorean_line_parser = { path = "delorean_line_parser" }
|
2020-05-11 19:09:10 +00:00
|
|
|
delorean_wal = { path = "delorean_wal" }
|
|
|
|
|
2020-02-14 18:02:39 +00:00
|
|
|
bytes = "0.5.4"
|
2019-12-09 18:04:01 +00:00
|
|
|
integer-encoding = "1.0.7"
|
2019-11-22 21:59:04 +00:00
|
|
|
|
2020-02-13 18:07:29 +00:00
|
|
|
hyper = "0.13"
|
|
|
|
tokio = { version = "0.2", features = ["full"] }
|
2019-12-11 23:03:00 +00:00
|
|
|
|
2020-02-14 16:32:08 +00:00
|
|
|
dotenv = "0.15.0"
|
2020-01-06 11:29:11 +00:00
|
|
|
dirs = "2.0.2"
|
2020-02-14 16:30:52 +00:00
|
|
|
env_logger = "0.7.1"
|
2020-02-13 18:07:29 +00:00
|
|
|
log = "0.4.8"
|
2019-12-11 23:03:00 +00:00
|
|
|
futures = "0.3.1"
|
|
|
|
|
|
|
|
serde_json = "1.0.44"
|
2020-04-05 20:32:32 +00:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2020-01-05 00:07:54 +00:00
|
|
|
csv = "1.1"
|
2020-06-06 10:04:41 +00:00
|
|
|
byteorder = "1.2.1"
|
2019-12-11 23:03:00 +00:00
|
|
|
|
2019-12-17 17:41:28 +00:00
|
|
|
num_cpus = "1.11.1"
|
|
|
|
|
2020-04-05 20:35:00 +00:00
|
|
|
tonic = "0.2.0"
|
2020-02-14 16:39:59 +00:00
|
|
|
prost = "0.6.1"
|
2020-02-19 14:43:38 +00:00
|
|
|
prost-types = "0.6.1"
|
2019-12-11 23:03:00 +00:00
|
|
|
|
2020-04-06 14:19:12 +00:00
|
|
|
crc32fast = "1.2.0"
|
|
|
|
num = "0.2.1"
|
|
|
|
|
2019-12-24 18:44:30 +00:00
|
|
|
# using croaring here because we needed Treemap support for u64
|
|
|
|
# for series ids and we needed serialization, which the pure Rust
|
|
|
|
# crate didn't offer.
|
|
|
|
croaring = "0.4.2"
|
2020-02-13 18:07:29 +00:00
|
|
|
http = "0.2.0"
|
|
|
|
serde_urlencoded = "0.6.1"
|
2020-03-12 02:02:13 +00:00
|
|
|
snafu = "0.6.2"
|
|
|
|
either = "1.5.3"
|
2020-04-24 14:36:59 +00:00
|
|
|
flatbuffers = "0.6.1"
|
2019-12-24 18:44:30 +00:00
|
|
|
|
2020-01-20 15:41:38 +00:00
|
|
|
[dev-dependencies]
|
2020-04-05 20:32:32 +00:00
|
|
|
assert_cmd = "1.0.0"
|
2020-05-28 15:11:10 +00:00
|
|
|
chrono = "0.4"
|
|
|
|
criterion = "0.3"
|
|
|
|
delorean_test_helpers = { path = "delorean_test_helpers" }
|
2020-06-02 10:40:41 +00:00
|
|
|
hex = "0.4.2"
|
2020-05-28 15:11:10 +00:00
|
|
|
libflate = "1.0.0"
|
2020-04-23 15:26:37 +00:00
|
|
|
rand = "0.7.2"
|
|
|
|
reqwest = { version = "0.10.1", features = ["blocking"] }
|
2020-05-28 15:11:10 +00:00
|
|
|
predicates = "1.0.4"
|
|
|
|
tempfile = "3.1.0"
|
2020-01-20 15:41:38 +00:00
|
|
|
|
|
|
|
[[bench]]
|
2020-02-12 15:31:41 +00:00
|
|
|
name = "encoders"
|
2020-02-07 13:26:50 +00:00
|
|
|
harness = false
|
|
|
|
|
2020-03-27 20:39:22 +00:00
|
|
|
[[bench]]
|
|
|
|
name = "line_parser"
|
|
|
|
harness = false
|