-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
42 lines (39 loc) · 929 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[package]
name = "lso"
version = "0.2.0"
edition = "2021"
[dependencies]
backoff = { version = "0.4", features = ["tokio"] }
clap = { version = "4.0", features = ["derive"] }
dotenv = "0.15"
futures-util = "0.3"
image = "0.24"
once_cell = "1.8"
pin-project = "1.0"
plotters = "0.3"
plotters-bitmap = "0.3"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serenity = "0.12"
tacview = "0.2"
thiserror = "2.0"
time = { version = "0.3", features = ["local-offset", "formatting", "parsing"] }
tokio = { version = "1.2", features = [
"rt-multi-thread",
"macros",
"signal",
"fs",
"sync",
] }
tonic = "0.11"
tracing = "0.1"
tracing-subscriber = "0.3"
ultraviolet = { version = "0.9", features = ["f64"] }
zip = "2.2"
[dependencies.stubs]
package = "dcs-grpc-stubs"
git = "https://github.com/DCS-gRPC/rust-server.git"
rev = "0.8.1"
features = ["client"]
[dev-dependencies]
tracing-test = "0.2"