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
|
2021-07-19 12:49:51 +00:00
|
|
|
arrow = { version = "5.0", features = ["prettyprint"] }
|
2021-05-05 16:59:12 +00:00
|
|
|
arrow_util = { path = "../arrow_util" }
|
2020-09-30 18:41:42 +00:00
|
|
|
async-trait = "0.1"
|
2021-04-01 11:05:58 +00:00
|
|
|
bytes = { version = "1.0" }
|
2021-02-04 23:56:02 +00:00
|
|
|
chrono = "0.4"
|
2021-06-17 16:15:21 +00:00
|
|
|
cache_loader_async = {version = "0.1.0", features = ["ttl-cache"] }
|
2021-02-04 23:56:02 +00:00
|
|
|
crc32fast = "1.2.0"
|
2020-11-04 17:33:41 +00:00
|
|
|
data_types = { path = "../data_types" }
|
2021-05-05 16:59:12 +00:00
|
|
|
datafusion = { path = "../datafusion" }
|
|
|
|
datafusion_util = { path = "../datafusion_util" }
|
2021-05-06 11:36:23 +00:00
|
|
|
entry = { path = "../entry" }
|
2021-03-18 17:43:58 +00:00
|
|
|
# See docs/regenerating_flatbuffers.md about updating generated code when updating the
|
|
|
|
# version of the flatbuffers crate
|
2021-07-13 13:44:45 +00:00
|
|
|
flatbuffers = "2"
|
2021-04-13 12:14:54 +00:00
|
|
|
futures = "0.3"
|
2021-04-14 08:16:24 +00:00
|
|
|
futures-util = { version = "0.3.1" }
|
2020-11-05 18:44:36 +00:00
|
|
|
generated_types = { path = "../generated_types" }
|
2021-06-10 16:40:30 +00:00
|
|
|
hashbrown = "0.11"
|
2021-04-19 10:47:56 +00:00
|
|
|
influxdb_iox_client = { path = "../influxdb_iox_client" }
|
2020-11-05 18:44:36 +00:00
|
|
|
influxdb_line_protocol = { path = "../influxdb_line_protocol" }
|
2021-03-19 16:27:57 +00:00
|
|
|
internal_types = { path = "../internal_types" }
|
2021-06-17 17:56:44 +00:00
|
|
|
itertools = "0.10.1"
|
2021-06-15 15:57:47 +00:00
|
|
|
lifecycle = { path = "../lifecycle" }
|
2021-04-21 21:51:56 +00:00
|
|
|
metrics = { path = "../metrics" }
|
2020-12-22 15:49:53 +00:00
|
|
|
mutable_buffer = { path = "../mutable_buffer" }
|
2021-04-14 10:48:09 +00:00
|
|
|
num_cpus = "1.13.0"
|
2020-11-05 13:56:30 +00:00
|
|
|
object_store = { path = "../object_store" }
|
2021-04-06 11:43:11 +00:00
|
|
|
observability_deps = { path = "../observability_deps" }
|
2021-08-10 09:17:56 +00:00
|
|
|
once_cell = { version = "1.4.0", features = ["race"] }
|
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" }
|
2021-07-05 08:23:58 +00:00
|
|
|
persistence_windows = { path = "../persistence_windows" }
|
2021-02-04 23:56:02 +00:00
|
|
|
query = { path = "../query" }
|
2021-04-19 10:47:56 +00:00
|
|
|
rand = "0.8.3"
|
2021-06-02 09:34:19 +00:00
|
|
|
rand_distr = "0.4.0"
|
2021-02-04 23:56:02 +00:00
|
|
|
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-04-30 16:29:39 +00:00
|
|
|
tikv-jemalloc-ctl = "0.4.0"
|
2021-02-04 23:56:02 +00:00
|
|
|
tokio = { version = "1.0", features = ["macros", "time"] }
|
2021-03-12 15:01:27 +00:00
|
|
|
tokio-util = { version = "0.6.3" }
|
2021-04-06 11:43:11 +00:00
|
|
|
tracker = { path = "../tracker" }
|
2021-02-04 23:56:02 +00:00
|
|
|
uuid = { version = "0.8", features = ["serde", "v4"] }
|
2021-07-14 09:39:49 +00:00
|
|
|
write_buffer = { path = "../write_buffer" }
|
2021-01-19 18:28:26 +00:00
|
|
|
|
2021-02-04 23:56:02 +00:00
|
|
|
[dev-dependencies] # In alphabetical order
|
2021-05-05 16:59:12 +00:00
|
|
|
arrow_util = { path = "../arrow_util" }
|
2021-06-04 17:31:19 +00:00
|
|
|
datafusion = { path = "../datafusion" }
|
|
|
|
tokio = { version = "1.0", features = ["macros", "time"] }
|
2021-04-13 13:56:15 +00:00
|
|
|
test_helpers = { path = "../test_helpers" }
|
|
|
|
|
2021-04-21 08:21:31 +00:00
|
|
|
[features]
|
|
|
|
default = []
|
|
|
|
# Enable features for benchmarking
|
|
|
|
bench = ["mutable_buffer/nocache"]
|