influxdb/Cargo.toml

130 lines
2.7 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"
[workspace]
members = [
"arrow_deps",
"data_types",
"generated_types",
"influxdb_line_protocol",
"influxdb_tsm",
"influxdb2_client",
"ingest",
"mem_qe",
"mutable_buffer",
"object_store",
"packers",
"panic_logging",
"query",
"read_buffer",
"server",
"test_helpers",
"wal",
"influxdb_iox_client",
]
[profile.release]
debug = true
2020-12-04 14:48:19 +00:00
[profile.bench]
debug = true
[dependencies]
arrow_deps = { path = "arrow_deps" }
data_types = { path = "data_types" }
generated_types = { path = "generated_types" }
influxdb_iox_client = { path = "influxdb_iox_client" }
influxdb_line_protocol = { path = "influxdb_line_protocol" }
influxdb_tsm = { path = "influxdb_tsm" }
ingest = { path = "ingest" }
mem_qe = { path = "mem_qe" }
mutable_buffer = { path = "mutable_buffer" }
object_store = { path = "object_store" }
packers = { path = "packers" }
panic_logging = { path = "panic_logging" }
query = { path = "query" }
read_buffer = { path = "read_buffer" }
server = { path = "server" }
wal = { path = "wal" }
bytes = "1.0"
hyper = "0.14"
# Forked to upgrade hyper and tokio
routerify = { git = "https://github.com/influxdata/routerify", rev = "bfe198e" }
tokio = { version = "1.0", features=["macros", "rt-multi-thread"] }
tokio-stream = {version = "0.1.2", features=["net"]}
clap = "2.33.1"
futures = "0.3.1"
serde_json = "1.0.44"
2020-09-25 16:22:48 +00:00
serde_urlencoded = "0.7.0"
serde = { version = "1.0", features = ["derive"] }
csv = "1.1"
byteorder = "1.3.4"
tonic = "0.4.0"
prost = "0.7"
prost-types = "0.7"
env_logger = "0.7.1"
tracing = { version = "0.1", features = ["release_max_level_debug"] }
tracing-futures="0.2.4"
# OpenTelemetry sinks for tracing
tracing-subscriber = "0.2.15"
tracing-opentelemetry = "0.11.0"
opentelemetry = { version = "0.12", default-features = false, features = ["trace", "tokio-support"] }
opentelemetry-jaeger = { version = "0.11", features = ["tokio"] }
2020-02-13 18:07:29 +00:00
http = "0.2.0"
2020-09-24 14:41:48 +00:00
snafu = "0.6.9"
flate2 = "1.0"
structopt = "0.3.21"
dotenv = "0.15.0"
dirs = "3.0.1"
lazy_static = "1.4.0"
[dev-dependencies]
assert_cmd = "1.0.0"
criterion = "0.3"
test_helpers = { path = "test_helpers" }
hex = "0.4.2"
influxdb2_client = { path = "influxdb2_client" }
2020-12-01 10:58:52 +00:00
flate2 = "1.0"
rand = "0.7.2"
reqwest = "0.11"
predicates = "1.0.4"
tempfile = "3.1.0"
[[bin]]
name = "cpu_feature_check"
path = "src/cpu_feature_check/main.rs"
[[bench]]
name = "encoders"
2020-02-07 13:26:50 +00:00
harness = false
[[bench]]
name = "line_parser"
harness = false
2020-07-02 16:39:05 +00:00
[[bench]]
name = "mapper"
harness = false
[[bench]]
name = "line_protocol_to_parquet"
harness = false
2020-07-30 11:54:51 +00:00
[[bench]]
name = "packers"
harness = false