influxdb/Cargo.toml

159 lines
4.6 KiB
TOML
Raw Normal View History

[package]
name = "influxdb_iox"
version = "0.1.0"
authors = ["Paul Dix <paul@pauldix.net>"]
edition = "2018"
default-run = "influxdb_iox"
readme = "README.md"
[[bin]]
name = "print_cpu"
path = "src/print_cpu.rs"
[workspace] # In alphabetical order
members = [
"arrow_util",
"data_types",
"datafusion",
"datafusion_util",
"entry",
"generated_types",
"google_types",
"influxdb2_client",
"influxdb_iox_client",
"influxdb_line_protocol",
"influxdb_tsm",
"internal_types",
"iox_object_store",
"logfmt",
"lifecycle",
"mem_qe",
"mutable_buffer",
"object_store",
"observability_deps",
"packers",
"panic_logging",
"persistence_windows",
"query",
"query_tests",
"read_buffer",
"server",
"server_benchmarks",
"test_helpers",
"trace",
"trace_exporters",
"tracker",
"trogging",
"grpc-router",
"grpc-router/grpc-router-test-gen",
"write_buffer",
]
[profile.release]
debug = true
2020-12-04 14:48:19 +00:00
[profile.bench]
debug = true
[dependencies]
# Workspace dependencies, in alphabetical order
datafusion = { path = "datafusion" }
data_types = { path = "data_types" }
entry = { path = "entry" }
generated_types = { path = "generated_types" }
heappy = { git = "https://github.com/mkmik/heappy", rev = "82a383128e484039cc2f31476e6289bed48a6701", features = ["enable_heap_profiler", "jemalloc_shim", "measure_free"], optional = true }
2021-08-12 16:04:42 +00:00
influxdb_iox_client = { path = "influxdb_iox_client", features = ["format"] }
influxdb_line_protocol = { path = "influxdb_line_protocol" }
internal_types = { path = "internal_types" }
logfmt = { path = "logfmt" }
2021-04-21 11:43:49 +00:00
metrics = { path = "metrics" }
mutable_buffer = { path = "mutable_buffer" }
num_cpus = "1.13.0"
object_store = { path = "object_store" }
observability_deps = { path = "observability_deps" }
panic_logging = { path = "panic_logging" }
query = { path = "query" }
read_buffer = { path = "read_buffer" }
server = { path = "server" }
trace = { path = "trace" }
trace_exporters = { path = "trace_exporters" }
tracker = { path = "tracker" }
trogging = { path = "trogging", default-features = false, features = ["structopt"] }
# Crates.io dependencies, in alphabetical order
arrow = { version = "5.0", features = ["prettyprint"] }
arrow-flight = "5.0"
backtrace = "0.3"
byteorder = "1.3.4"
bytes = "1.0"
2021-02-05 18:21:24 +00:00
chrono = "0.4"
clap = "2.33.1"
csv = "1.1"
dirs = "3.0.1"
dotenv = "0.15.0"
flate2 = "1.0"
futures = "0.3"
http = "0.2.0"
hyper = "0.14"
libc = { version = "0.2" }
log = "0.4"
once_cell = { version = "1.4.0", features = ["parking_lot"] }
parking_lot = "0.11.1"
2021-06-17 17:56:44 +00:00
itertools = "0.10.1"
parquet = "5.0"
# used by arrow/datafusion anyway
prettytable-rs = "0.8"
pprof = { version = "^0.5", default-features = false, features = ["flamegraph", "protobuf"], optional = true }
prost = "0.8"
# Forked to upgrade hyper and tokio
routerify = { git = "https://github.com/influxdata/routerify", rev = "274e250" }
rustyline = "8.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.44"
2020-09-25 16:22:48 +00:00
serde_urlencoded = "0.7.0"
snafu = "0.6.9"
structopt = "0.3.21"
thiserror = "1.0.23"
2021-08-13 15:27:38 +00:00
# remember to put "unprefixed_malloc_on_supported_platforms" if you disable heappy
tikv-jemallocator = { version = "0.4.0" }
2021-04-30 16:29:39 +00:00
tikv-jemalloc-ctl = "0.4.0"
tokio = { version = "1.0", features = ["macros", "rt-multi-thread", "parking_lot", "signal"] }
tokio-stream = { version = "0.1.2", features = ["net"] }
tokio-util = { version = "0.6.3" }
tonic = "0.5.0"
tonic-health = "0.4.0"
tonic-reflection = "0.2.0"
uuid = { version = "0.8", features = ["v4"] }
[dev-dependencies]
# Workspace dependencies, in alphabetical order
arrow_util = { path = "arrow_util" }
entry = { path = "entry" }
influxdb2_client = { path = "influxdb2_client" }
influxdb_iox_client = { path = "influxdb_iox_client", features = ["flight"] }
test_helpers = { path = "test_helpers" }
synchronized-writer = "1"
parking_lot = "0.11.1"
write_buffer = { path = "write_buffer" }
# Crates.io dependencies, in alphabetical order
assert_cmd = "1.0.0"
flate2 = "1.0"
hex = "0.4.2"
predicates = "2.0.2"
rand = "0.8.3"
rdkafka = "0.26.0"
reqwest = "0.11"
tempfile = "3.1.0"
[features]
azure = ["object_store/azure"] # Optional Azure Object store support
gcp = ["object_store/gcp"] # Optional GCP object store support
aws = ["object_store/aws"] # Optional AWS / S3 object store support
jaeger = ["trogging/jaeger"] # Enable optional jaeger tracing support
otlp = ["trogging/otlp"] # Enable optional open telemetry collector
# heappy is also an optional feature; Not on by default as it
2021-08-18 15:13:37 +00:00
# runtime overhead on all allocations (calls to malloc)
# pprof is also an optional feature for pprof support