-
Notifications
You must be signed in to change notification settings - Fork 186
/
Cargo.toml
102 lines (88 loc) · 1.9 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
[package]
name = "influxdb_iox"
version = "0.1.0"
authors = ["Paul Dix <[email protected]>"]
edition = "2018"
default-run = "influxdb_iox"
[workspace]
members = [
"arrow_deps",
"cluster",
"data_types",
"generated_types",
"ingest",
"influxdb_line_protocol",
"object_store",
"mem_qe",
"segment_store",
"packers",
"test_helpers",
"influxdb_tsm",
"storage",
"wal",
"write_buffer",
"influxdb2_client",
]
[profile.release]
debug = true
[dependencies]
data_types = { path = "data_types" }
arrow_deps = { path = "arrow_deps" }
generated_types = { path = "generated_types" }
ingest = { path = "ingest" }
influxdb_line_protocol = { path = "influxdb_line_protocol" }
mem_qe = { path = "mem_qe" }
segment_store = { path = "segment_store" }
packers = { path = "packers" }
write_buffer = { path = "write_buffer" }
object_store = { path = "object_store" }
storage = { path = "storage" }
influxdb_tsm = { path = "influxdb_tsm" }
wal = { path = "wal" }
bytes = "0.5.4"
hyper = "0.13"
tokio = { version = "0.2", features = ["full"] }
clap = "2.33.1"
dotenv = "0.15.0"
dirs = "3.0.1"
env_logger = "0.7.1"
futures = "0.3.1"
serde_json = "1.0.44"
serde_urlencoded = "0.7.0"
serde = { version = "1.0", features = ["derive"] }
csv = "1.1"
byteorder = "1.3.4"
tonic = "0.3.1"
prost = "0.6.1"
prost-types = "0.6.1"
tracing = "0.1"
tracing-futures="0.2.4"
http = "0.2.0"
snafu = "0.6.9"
libflate = "1.0.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" }
libflate = "1.0.0"
rand = "0.7.2"
reqwest = "0.10.1"
predicates = "1.0.4"
tempfile = "3.1.0"
[[bench]]
name = "encoders"
harness = false
[[bench]]
name = "line_parser"
harness = false
[[bench]]
name = "mapper"
harness = false
[[bench]]
name = "line_protocol_to_parquet"
harness = false
[[bench]]
name = "packers"
harness = false