2019-11-22 21:59:04 +00:00
|
|
|
[package]
|
2020-11-05 18:51:04 +00:00
|
|
|
name = "influxdb_iox"
|
2019-11-22 21:59:04 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Paul Dix <paul@pauldix.net>"]
|
|
|
|
edition = "2018"
|
2020-11-05 18:51:04 +00:00
|
|
|
default-run = "influxdb_iox"
|
2019-11-22 21:59:04 +00:00
|
|
|
|
2020-04-23 15:26:37 +00:00
|
|
|
[workspace]
|
2020-05-01 16:52:00 +00:00
|
|
|
members = [
|
2020-11-05 18:44:36 +00:00
|
|
|
"arrow_deps",
|
2020-11-20 17:14:12 +00:00
|
|
|
"server",
|
2020-11-04 17:33:41 +00:00
|
|
|
"data_types",
|
2020-11-05 18:44:36 +00:00
|
|
|
"generated_types",
|
|
|
|
"ingest",
|
|
|
|
"influxdb_line_protocol",
|
2020-11-05 13:56:30 +00:00
|
|
|
"object_store",
|
2020-11-05 14:36:46 +00:00
|
|
|
"mem_qe",
|
2020-11-10 16:35:17 +00:00
|
|
|
"segment_store",
|
2020-11-05 13:52:22 +00:00
|
|
|
"packers",
|
2020-11-05 18:44:36 +00:00
|
|
|
"test_helpers",
|
2020-11-05 19:35:38 +00:00
|
|
|
"influxdb_tsm",
|
2020-11-24 19:19:29 +00:00
|
|
|
"query",
|
2020-11-05 14:25:29 +00:00
|
|
|
"wal",
|
2020-11-05 18:44:36 +00:00
|
|
|
"write_buffer",
|
2020-07-15 19:10:43 +00:00
|
|
|
"influxdb2_client",
|
2020-05-01 16:52:00 +00:00
|
|
|
]
|
2019-11-22 21:59:04 +00:00
|
|
|
|
2020-03-27 20:39:22 +00:00
|
|
|
[profile.release]
|
|
|
|
debug = true
|
|
|
|
|
2019-11-22 21:59:04 +00:00
|
|
|
[dependencies]
|
2020-11-05 11:17:20 +00:00
|
|
|
data_types = { path = "data_types" }
|
2020-11-05 18:44:36 +00:00
|
|
|
arrow_deps = { path = "arrow_deps" }
|
|
|
|
generated_types = { path = "generated_types" }
|
|
|
|
ingest = { path = "ingest" }
|
|
|
|
influxdb_line_protocol = { path = "influxdb_line_protocol" }
|
2020-11-05 14:36:46 +00:00
|
|
|
mem_qe = { path = "mem_qe" }
|
2020-11-10 16:35:17 +00:00
|
|
|
segment_store = { path = "segment_store" }
|
2020-11-05 13:52:22 +00:00
|
|
|
packers = { path = "packers" }
|
2020-11-05 18:44:36 +00:00
|
|
|
write_buffer = { path = "write_buffer" }
|
2020-11-05 13:56:30 +00:00
|
|
|
object_store = { path = "object_store" }
|
2020-11-24 19:19:29 +00:00
|
|
|
query = { path = "query" }
|
2020-11-05 19:35:38 +00:00
|
|
|
influxdb_tsm = { path = "influxdb_tsm" }
|
2020-11-05 14:25:29 +00:00
|
|
|
wal = { path = "wal" }
|
2020-05-11 19:09:10 +00:00
|
|
|
|
2020-02-14 18:02:39 +00:00
|
|
|
bytes = "0.5.4"
|
2020-02-13 18:07:29 +00:00
|
|
|
hyper = "0.13"
|
|
|
|
tokio = { version = "0.2", features = ["full"] }
|
2019-12-11 23:03:00 +00:00
|
|
|
|
2020-06-10 20:04:46 +00:00
|
|
|
clap = "2.33.1"
|
2020-02-14 16:32:08 +00:00
|
|
|
dotenv = "0.15.0"
|
2020-09-25 16:22:48 +00:00
|
|
|
dirs = "3.0.1"
|
2020-02-14 16:30:52 +00:00
|
|
|
env_logger = "0.7.1"
|
2019-12-11 23:03:00 +00:00
|
|
|
futures = "0.3.1"
|
|
|
|
|
|
|
|
serde_json = "1.0.44"
|
2020-09-25 16:22:48 +00:00
|
|
|
serde_urlencoded = "0.7.0"
|
2020-04-05 20:32:32 +00:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2020-01-05 00:07:54 +00:00
|
|
|
csv = "1.1"
|
2020-06-17 16:50:23 +00:00
|
|
|
byteorder = "1.3.4"
|
2019-12-11 23:03:00 +00:00
|
|
|
|
2020-09-25 16:22:48 +00:00
|
|
|
tonic = "0.3.1"
|
2020-02-14 16:39:59 +00:00
|
|
|
prost = "0.6.1"
|
2020-02-19 14:43:38 +00:00
|
|
|
prost-types = "0.6.1"
|
2020-06-29 12:45:31 +00:00
|
|
|
tracing = "0.1"
|
|
|
|
tracing-futures="0.2.4"
|
|
|
|
|
2020-02-13 18:07:29 +00:00
|
|
|
http = "0.2.0"
|
2020-09-24 14:41:48 +00:00
|
|
|
snafu = "0.6.9"
|
2020-06-10 20:04:46 +00:00
|
|
|
libflate = "1.0.0"
|
2019-12-24 18:44:30 +00:00
|
|
|
|
2020-01-20 15:41:38 +00:00
|
|
|
[dev-dependencies]
|
2020-04-05 20:32:32 +00:00
|
|
|
assert_cmd = "1.0.0"
|
2020-05-28 15:11:10 +00:00
|
|
|
criterion = "0.3"
|
2020-11-05 18:44:36 +00:00
|
|
|
test_helpers = { path = "test_helpers" }
|
2020-06-02 10:40:41 +00:00
|
|
|
hex = "0.4.2"
|
2020-07-15 19:10:43 +00:00
|
|
|
influxdb2_client = { path = "influxdb2_client" }
|
2020-05-28 15:11:10 +00:00
|
|
|
libflate = "1.0.0"
|
2020-04-23 15:26:37 +00:00
|
|
|
rand = "0.7.2"
|
2020-07-15 19:48:17 +00:00
|
|
|
reqwest = "0.10.1"
|
2020-05-28 15:11:10 +00:00
|
|
|
predicates = "1.0.4"
|
|
|
|
tempfile = "3.1.0"
|
2020-01-20 15:41:38 +00:00
|
|
|
|
2020-11-17 18:28:23 +00:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "cpu_feature_check"
|
|
|
|
path = "src/cpu_feature_check/main.rs"
|
|
|
|
|
|
|
|
|
2020-01-20 15:41:38 +00:00
|
|
|
[[bench]]
|
2020-02-12 15:31:41 +00:00
|
|
|
name = "encoders"
|
2020-02-07 13:26:50 +00:00
|
|
|
harness = false
|
|
|
|
|
2020-03-27 20:39:22 +00:00
|
|
|
[[bench]]
|
|
|
|
name = "line_parser"
|
|
|
|
harness = false
|
2020-06-23 09:42:19 +00:00
|
|
|
|
2020-07-02 16:39:05 +00:00
|
|
|
[[bench]]
|
|
|
|
name = "mapper"
|
|
|
|
harness = false
|
|
|
|
|
2020-06-23 09:42:19 +00:00
|
|
|
[[bench]]
|
|
|
|
name = "line_protocol_to_parquet"
|
|
|
|
harness = false
|
2020-07-30 11:54:51 +00:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "packers"
|
|
|
|
harness = false
|