[package] name = "server" version = "0.1.0" authors = ["pauldix "] edition = "2021" [dependencies] # In alphabetical order arrow_util = { path = "../arrow_util" } async-trait = "0.1" bytes = "1.0" chrono = { version = "0.4", default-features = false } cache_loader_async = { version = "0.1.2", features = ["ttl-cache"] } crc32fast = "1.3.0" data_types = { path = "../data_types" } db = { path = "../db" } futures = "0.3" 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" } job_registry = { path = "../job_registry" } lifecycle = { path = "../lifecycle" } metric = { path = "../metric" } mutable_batch_lp = { path = "../mutable_batch_lp" } num_cpus = "1.13.0" object_store = { path = "../object_store" } observability_deps = { path = "../observability_deps" } parking_lot = "0.11.2" parquet_catalog = { path = "../parquet_catalog" } persistence_windows = { path = "../persistence_windows" } query = { path = "../query" } rand = "0.8.3" snafu = "0.7" time = { path = "../time" } trace = { path = "../trace" } tokio = { version = "1.13", features = ["macros", "parking_lot", "rt-multi-thread", "sync", "time"] } tokio-util = { version = "0.6.9" } tracker = { path = "../tracker" } uuid = { version = "0.8", features = ["v4"] } write_buffer = { path = "../write_buffer" } workspace-hack = { path = "../workspace-hack"} [dev-dependencies] # In alphabetical order dml = { path = "../dml" } futures-util = { version = "0.3" } regex = "1" router = { path = "../router" } test_helpers = { path = "../test_helpers" } [features] default = [] kafka = ["write_buffer/kafka"]