2020-09-30 18:41:42 +00:00
|
|
|
[package]
|
2020-12-08 19:20:43 +00:00
|
|
|
name = "server"
|
2020-09-30 18:41:42 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["pauldix <paul@pauldix.net>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
snafu = "0.6"
|
2020-10-25 22:30:38 +00:00
|
|
|
serde = "1.0"
|
2020-09-30 18:41:42 +00:00
|
|
|
serde_json = "1.0"
|
|
|
|
async-trait = "0.1"
|
2020-11-04 17:33:41 +00:00
|
|
|
data_types = { path = "../data_types" }
|
2020-11-05 18:44:36 +00:00
|
|
|
generated_types = { path = "../generated_types" }
|
|
|
|
influxdb_line_protocol = { path = "../influxdb_line_protocol" }
|
2020-11-24 19:19:29 +00:00
|
|
|
query = { path = "../query" }
|
2020-11-05 18:44:36 +00:00
|
|
|
write_buffer = { path = "../write_buffer" }
|
2020-11-05 13:56:30 +00:00
|
|
|
object_store = { path = "../object_store" }
|
2020-11-24 21:37:09 +00:00
|
|
|
tracing = "0.1"
|
2020-09-30 18:41:42 +00:00
|
|
|
tokio = { version = "0.2", features = ["full"] }
|
2020-11-05 18:44:36 +00:00
|
|
|
arrow_deps = { path = "../arrow_deps" }
|
2020-10-25 22:30:38 +00:00
|
|
|
futures = "0.3.7"
|
|
|
|
bytes = "0.5"
|
2020-12-08 19:20:43 +00:00
|
|
|
chrono = "0.4"
|
|
|
|
uuid = { version = "0.8", features = ["serde", "v4"]}
|