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>"]
|
2021-10-25 08:45:44 +00:00
|
|
|
edition = "2021"
|
2020-09-30 18:41:42 +00:00
|
|
|
|
2021-02-04 23:56:02 +00:00
|
|
|
[dependencies] # In alphabetical order
|
2021-10-19 17:14:08 +00:00
|
|
|
arrow = { version = "6.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-09-20 09:07:12 +00:00
|
|
|
bytes = "1.0"
|
2021-02-04 23:56:02 +00:00
|
|
|
chrono = "0.4"
|
2021-10-11 15:02:12 +00:00
|
|
|
cache_loader_async = { version = "0.1.2", features = ["ttl-cache"] }
|
2021-11-29 09:00:01 +00:00
|
|
|
crc32fast = "1.2.2"
|
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-11-11 12:34:07 +00:00
|
|
|
dml = { path = "../dml" }
|
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" }
|
2021-10-05 15:07:45 +00:00
|
|
|
generated_types = { path = "../generated_types", features = ["data_types_conversions"] }
|
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-08-05 19:20:49 +00:00
|
|
|
iox_object_store = { path = "../iox_object_store" }
|
2021-06-17 17:56:44 +00:00
|
|
|
itertools = "0.10.1"
|
2021-06-15 15:57:47 +00:00
|
|
|
lifecycle = { path = "../lifecycle" }
|
2021-08-27 12:55:35 +00:00
|
|
|
metric = { path = "../metric" }
|
2021-10-28 20:15:28 +00:00
|
|
|
mutable_batch = { path = "../mutable_batch" }
|
2021-11-04 10:20:40 +00:00
|
|
|
mutable_batch_lp = { path = "../mutable_batch_lp" }
|
2021-11-05 11:09:33 +00:00
|
|
|
mutable_batch_pb = { path = "../mutable_batch_pb" }
|
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-09-06 01:18:24 +00:00
|
|
|
parking_lot = "0.11.2"
|
2021-10-14 12:34:59 +00:00
|
|
|
parquet_catalog = { path = "../parquet_catalog" }
|
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-09-14 15:12:56 +00:00
|
|
|
predicate = { path = "../predicate" }
|
2021-02-04 23:56:02 +00:00
|
|
|
query = { path = "../query" }
|
2021-04-19 10:47:56 +00:00
|
|
|
rand = "0.8.3"
|
2021-09-20 08:39:39 +00:00
|
|
|
rand_distr = "0.4.2"
|
2021-02-04 23:56:02 +00:00
|
|
|
read_buffer = { path = "../read_buffer" }
|
2021-10-11 09:45:08 +00:00
|
|
|
schema = { path = "../schema" }
|
2021-02-04 23:56:02 +00:00
|
|
|
serde = "1.0"
|
|
|
|
serde_json = "1.0"
|
|
|
|
snafu = "0.6"
|
2021-01-10 21:48:50 +00:00
|
|
|
snap = "1.0.0"
|
2021-10-11 20:40:00 +00:00
|
|
|
time = { path = "../time" }
|
2021-08-24 17:35:59 +00:00
|
|
|
trace = { path = "../trace" }
|
2021-11-01 11:21:59 +00:00
|
|
|
tokio = { version = "1.13", features = ["macros", "time"] }
|
2021-11-01 01:28:41 +00:00
|
|
|
tokio-util = { version = "0.6.9" }
|
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-11-19 14:21:57 +00:00
|
|
|
workspace-hack = { path = "../workspace-hack"}
|
2021-01-19 18:28:26 +00:00
|
|
|
|
2021-02-04 23:56:02 +00:00
|
|
|
[dev-dependencies] # In alphabetical order
|
2021-11-23 10:07:12 +00:00
|
|
|
regex = "1.4"
|
|
|
|
router = { path = "../router" }
|
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"]
|