forked from GreptimeTeam/greptimedb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
79 lines (76 loc) · 2.06 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
[package]
name = "tests-integration"
version.workspace = true
edition.workspace = true
license.workspace = true
[features]
dashboard = []
[dependencies]
api.workspace = true
async-trait = "0.1"
auth.workspace = true
axum = "0.6"
axum-test-helper = { git = "https://github.com/sunng87/axum-test-helper.git", branch = "patch-1" }
catalog.workspace = true
chrono.workspace = true
client = { workspace = true, features = ["testing"] }
cmd.workspace = true
common-base.workspace = true
common-catalog.workspace = true
common-config.workspace = true
common-error.workspace = true
common-grpc.workspace = true
common-meta = { workspace = true, features = ["testing"] }
common-procedure.workspace = true
common-query.workspace = true
common-recordbatch.workspace = true
common-runtime.workspace = true
common-telemetry.workspace = true
common-test-util.workspace = true
datanode = { workspace = true, features = ["testing"] }
datatypes.workspace = true
dotenv = "0.15"
frontend = { workspace = true, features = ["testing"] }
futures.workspace = true
meta-client.workspace = true
meta-srv = { workspace = true, features = ["mock"] }
object-store.workspace = true
once_cell.workspace = true
operator.workspace = true
query.workspace = true
rand.workspace = true
rstest = "0.17"
rstest_reuse = "0.5"
secrecy = "0.8"
serde.workspace = true
serde_json = "1.0"
servers = { workspace = true, features = ["testing"] }
session.workspace = true
snafu.workspace = true
sql.workspace = true
sqlx = { version = "0.6", features = [
"runtime-tokio-rustls",
"mysql",
"postgres",
"chrono",
] }
substrait.workspace = true
table.workspace = true
tempfile.workspace = true
tokio.workspace = true
tonic.workspace = true
tower = "0.4"
uuid.workspace = true
[dev-dependencies]
datafusion-expr.workspace = true
datafusion.workspace = true
itertools.workspace = true
num_cpus = "1.13"
opentelemetry-proto.workspace = true
partition.workspace = true
paste.workspace = true
prost.workspace = true
script.workspace = true
session = { workspace = true, features = ["testing"] }
store-api.workspace = true
tokio-postgres = "0.7"