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-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-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-02-14 16:29:02 +00:00
|
|
|
byteorder = "1.3.4"
|
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
|
|
|
|
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-02-28 21:48:32 +00:00
|
|
|
nom = "5.1.1"
|
2020-03-12 02:02:13 +00:00
|
|
|
snafu = "0.6.2"
|
|
|
|
either = "1.5.3"
|
2020-04-03 15:18:12 +00:00
|
|
|
smallvec = "1.2.0"
|
2019-12-24 18:44:30 +00:00
|
|
|
|
2020-04-15 20:00:54 +00:00
|
|
|
# Used by the generate and seed utilities as well as tests
|
2020-04-15 17:41:34 +00:00
|
|
|
rand = "0.7.2"
|
2020-04-15 20:00:54 +00:00
|
|
|
structopt = "0.3.13"
|
|
|
|
reqwest = { version = "0.10.1", features = ["blocking"] }
|
2020-04-15 17:41:34 +00:00
|
|
|
|
2020-01-20 15:41:38 +00:00
|
|
|
[dev-dependencies]
|
|
|
|
criterion = "0.3"
|
2020-04-05 20:32:32 +00:00
|
|
|
assert_cmd = "1.0.0"
|
2020-02-28 14:13:47 +00:00
|
|
|
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
|
|
|
|
|
2019-11-22 21:59:04 +00:00
|
|
|
[build-dependencies]
|
2020-04-05 20:35:00 +00:00
|
|
|
tonic-build = "0.2.0"
|
2020-02-27 14:27:23 +00:00
|
|
|
rand = "0.7.2"
|