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-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-11-22 22:06:04 +00:00
|
|
|
chrono = { version = "0.4", default-features = false }
|
2021-10-11 15:02:12 +00:00
|
|
|
cache_loader_async = { version = "0.1.2", features = ["ttl-cache"] }
|
2021-12-06 01:22:09 +00:00
|
|
|
crc32fast = "1.3.0"
|
2020-11-04 17:33:41 +00:00
|
|
|
data_types = { path = "../data_types" }
|
2021-12-23 22:01:17 +00:00
|
|
|
db = { path = "../db" }
|
2021-04-13 12:14:54 +00:00
|
|
|
futures = "0.3"
|
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-12-23 22:01:17 +00:00
|
|
|
job_registry = { path = "../job_registry" }
|
2021-06-15 15:57:47 +00:00
|
|
|
lifecycle = { path = "../lifecycle" }
|
2021-08-27 12:55:35 +00:00
|
|
|
metric = { path = "../metric" }
|
2021-11-04 10:20:40 +00:00
|
|
|
mutable_batch_lp = { path = "../mutable_batch_lp" }
|
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-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-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"
|
2022-01-11 19:22:36 +00:00
|
|
|
snafu = "0.7"
|
2021-10-11 20:40:00 +00:00
|
|
|
time = { path = "../time" }
|
2021-08-24 17:35:59 +00:00
|
|
|
trace = { path = "../trace" }
|
2021-12-02 19:46:26 +00:00
|
|
|
tokio = { version = "1.13", features = ["macros", "parking_lot", "rt-multi-thread", "sync", "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-12-03 16:50:46 +00:00
|
|
|
uuid = { version = "0.8", features = ["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-12-23 22:01:17 +00:00
|
|
|
dml = { path = "../dml" }
|
|
|
|
futures-util = { version = "0.3" }
|
2021-12-01 19:21:28 +00:00
|
|
|
regex = "1"
|
2021-11-23 10:07:12 +00:00
|
|
|
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 = []
|
2021-12-08 22:04:27 +00:00
|
|
|
|
|
|
|
kafka = ["write_buffer/kafka"]
|