influxdb/server/Cargo.toml

40 lines
1.2 KiB
TOML
Raw Normal View History

[package]
name = "server"
version = "0.1.0"
authors = ["pauldix <paul@pauldix.net>"]
edition = "2018"
[dependencies] # In alphabetical order
arrow_deps = { path = "../arrow_deps" }
async-trait = "0.1"
bytes = { version = "1.0" }
chrono = "0.4"
crc32fast = "1.2.0"
data_types = { path = "../data_types" }
# See docs/regenerating_flatbuffers.md about updating generated code when updating the
# version of the flatbuffers crate
2021-03-17 18:14:43 +00:00
flatbuffers = "0.8"
futures = "0.3.7"
generated_types = { path = "../generated_types" }
hashbrown = "0.9.1"
influxdb_line_protocol = { path = "../influxdb_line_protocol" }
internal_types = { path = "../internal_types" }
mutable_buffer = { path = "../mutable_buffer" }
object_store = { path = "../object_store" }
2021-02-19 16:03:33 +00:00
parking_lot = "0.11.1"
2021-03-31 01:31:51 +00:00
parquet_file = { path = "../parquet_file" }
pin-project = "1.0"
query = { path = "../query" }
read_buffer = { path = "../read_buffer" }
serde = "1.0"
serde_json = "1.0"
snafu = "0.6"
snap = "1.0.0"
tokio = { version = "1.0", features = ["macros", "time"] }
tokio-util = { version = "0.6.3" }
observability_deps = { path = "../observability_deps" }
uuid = { version = "0.8", features = ["serde", "v4"] }
[dev-dependencies] # In alphabetical order
test_helpers = { path = "../test_helpers" }