-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
26 lines (23 loc) · 822 Bytes
/
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
[package]
name = "qst-backend-rust"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "qst-b"
path = "src/main.rs"
[dependencies]
prost = { version = "0.12.3" }
tonic = "0.11.0"
serde = { version = "1.0.196", features = ["derive"] }
serde_yaml = "0.9.32"
tokio = { version = "1.33", features = ["rt-multi-thread", "macros", "signal"] }
tokio-stream = { version = "0.1.5", features = ["net"] }
uuid = { version = "1.5.0", features = ["v4", "fast-rng", "macro-diagnostics"] }
clap = { version = "4.5.1", features = ["derive"] }
dirs = "5.0.1"
xlog-rs = { version = "0.3.1" }
signal-hook = { version = "0.3.17" }
xcfg-rs = { version = "0.2.4" }
[build-dependencies]
tonic-build = { version = "0.11.0", features = ["prost"] }