70 lines
2.3 KiB
TOML
70 lines
2.3 KiB
TOML
[package]
|
|
name = "server"
|
|
version = "0.1.0"
|
|
authors = ["pauldix <paul@pauldix.net>"]
|
|
edition = "2018"
|
|
|
|
[dependencies] # In alphabetical order
|
|
arrow = { version = "5.5", features = ["prettyprint"] }
|
|
arrow_util = { path = "../arrow_util" }
|
|
async-trait = "0.1"
|
|
bytes = "1.0"
|
|
chrono = "0.4"
|
|
cache_loader_async = { version = "0.1.2", features = ["ttl-cache"] }
|
|
crc32fast = "1.2.0"
|
|
data_types = { path = "../data_types" }
|
|
datafusion = { path = "../datafusion" }
|
|
datafusion_util = { path = "../datafusion_util" }
|
|
entry = { path = "../entry" }
|
|
# See docs/regenerating_flatbuffers.md about updating generated code when updating the
|
|
# version of the flatbuffers crate
|
|
flatbuffers = "2"
|
|
futures = "0.3"
|
|
futures-util = { version = "0.3.1" }
|
|
generated_types = { path = "../generated_types", features = ["data_types_conversions"] }
|
|
hashbrown = "0.11"
|
|
influxdb_iox_client = { path = "../influxdb_iox_client" }
|
|
influxdb_line_protocol = { path = "../influxdb_line_protocol" }
|
|
internal_types = { path = "../internal_types" }
|
|
iox_object_store = { path = "../iox_object_store" }
|
|
itertools = "0.10.1"
|
|
lifecycle = { path = "../lifecycle" }
|
|
metric = { path = "../metric" }
|
|
mutable_buffer = { path = "../mutable_buffer" }
|
|
num_cpus = "1.13.0"
|
|
object_store = { path = "../object_store" }
|
|
observability_deps = { path = "../observability_deps" }
|
|
once_cell = { version = "1.4.0", features = ["race"] }
|
|
parking_lot = "0.11.2"
|
|
parquet_catalog = { path = "../parquet_catalog" }
|
|
parquet_file = { path = "../parquet_file" }
|
|
persistence_windows = { path = "../persistence_windows" }
|
|
predicate = { path = "../predicate" }
|
|
query = { path = "../query" }
|
|
rand = "0.8.3"
|
|
rand_distr = "0.4.2"
|
|
read_buffer = { path = "../read_buffer" }
|
|
schema = { path = "../schema" }
|
|
serde = "1.0"
|
|
serde_json = "1.0"
|
|
snafu = "0.6"
|
|
snap = "1.0.0"
|
|
time = { path = "../time" }
|
|
trace = { path = "../trace" }
|
|
tokio = { version = "1.11", features = ["macros", "time"] }
|
|
tokio-util = { version = "0.6.3" }
|
|
tracker = { path = "../tracker" }
|
|
uuid = { version = "0.8", features = ["serde", "v4"] }
|
|
write_buffer = { path = "../write_buffer" }
|
|
|
|
[dev-dependencies] # In alphabetical order
|
|
arrow_util = { path = "../arrow_util" }
|
|
datafusion = { path = "../datafusion" }
|
|
tokio = { version = "1.11", features = ["macros", "time"] }
|
|
test_helpers = { path = "../test_helpers" }
|
|
|
|
[features]
|
|
default = []
|
|
# Enable features for benchmarking
|
|
bench = ["mutable_buffer/nocache"]
|