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"
|
|
|
|
|
2021-02-04 23:56:02 +00:00
|
|
|
[dependencies] # In alphabetical order
|
|
|
|
arrow_deps = { path = "../arrow_deps" }
|
2020-09-30 18:41:42 +00:00
|
|
|
async-trait = "0.1"
|
2021-02-04 23:56:02 +00:00
|
|
|
bytes = "1.0"
|
|
|
|
chrono = "0.4"
|
|
|
|
crc32fast = "1.2.0"
|
2020-11-04 17:33:41 +00:00
|
|
|
data_types = { path = "../data_types" }
|
2021-02-04 23:56:02 +00:00
|
|
|
flatbuffers = "0.6"
|
|
|
|
futures = "0.3.7"
|
2020-11-05 18:44:36 +00:00
|
|
|
generated_types = { path = "../generated_types" }
|
|
|
|
influxdb_line_protocol = { path = "../influxdb_line_protocol" }
|
2020-12-22 15:49:53 +00:00
|
|
|
mutable_buffer = { path = "../mutable_buffer" }
|
2020-11-05 13:56:30 +00:00
|
|
|
object_store = { path = "../object_store" }
|
2021-02-09 19:34:21 +00:00
|
|
|
pin-project = "1.0"
|
2021-02-04 23:56:02 +00:00
|
|
|
query = { path = "../query" }
|
|
|
|
read_buffer = { path = "../read_buffer" }
|
|
|
|
serde = "1.0"
|
|
|
|
serde_json = "1.0"
|
|
|
|
snafu = "0.6"
|
2021-01-10 21:48:50 +00:00
|
|
|
snap = "1.0.0"
|
2021-02-04 23:56:02 +00:00
|
|
|
tokio = { version = "1.0", features = ["macros", "time"] }
|
|
|
|
tracing = "0.1"
|
|
|
|
uuid = { version = "0.8", features = ["serde", "v4"] }
|
2021-01-19 18:28:26 +00:00
|
|
|
|
2021-02-04 23:56:02 +00:00
|
|
|
[dev-dependencies] # In alphabetical order
|
2021-01-19 18:28:26 +00:00
|
|
|
test_helpers = { path = "../test_helpers" }
|