-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
47 lines (41 loc) · 1.09 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
[package]
name = "dragonflybot"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "dragonflybot-grpc-server"
path = "src/bin/grpc_server.rs"
[[bin]]
name = "dragonflybot-grpc-client"
path = "src/bin/grpc_client.rs"
[profile.performance]
codegen-units = 1
inherits = "release"
incremental = false
lto = "fat"
panic = "abort"
strip = true
[dependencies]
async-trait = "0.1.68"
async-stream = "0.3.5"
clap = { version = "4.3.3", features = ["derive"] }
error-stack = "0.3.1"
fastwebsockets = { version = "0.4.2", features = ["upgrade"] }
gjson = "0.8"
hyper = {version = "0.14.26", features = ["http1", "client"]}
prost = "0.11"
rust_decimal = "1.29.1"
serde_json = "1.0"
strum = { version = "0.24", features = ["derive"] }
tikv-jemallocator = "0.5"
tonic = "0.9.2"
tokio = {version = "1.28.2", features = ["io-std", "macros", "net", "rt-multi-thread", "signal", "sync"]}
tokio-rustls = "0.24.0"
tokio-stream = "0.1.14"
tracing = "0.1"
tracing-subscriber = "0.3"
webpki-roots = "0.23.1"
[dev-dependencies]
criterion = { version = "0.4", features = ["html_reports"] }
[build-dependencies]
tonic-build = "0.9.2"