-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
38 lines (34 loc) · 968 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
[package]
name = "wuthering-waves-gacha-record"
version = "0.6.0"
edition = "2021"
build = "build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
chrono = { version = "0.4", features = ["serde"] }
reqwest = { version = "0.12", features = ["json", "stream"] }
tokio = { version = "1", features = ["rt", "rt-multi-thread", "macros", "fs"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
url = "2"
anyhow = "1"
regex = "1"
sysinfo = "0.32"
tracing = "0.1"
tracing-subscriber = { version = "0.3.18", features = ['local-time', 'time'] }
time = { version = "0.3", features = ["macros", "formatting"] }
egui = "0.29"
egui_plot = "0.29"
eframe = { version = "0.29", features = ["wgpu"] }
egui_commonmark = "0.18"
image = "0.25"
toml = "0.8"
rfd = "0.14"
futures-util = "0.3"
ratelimit = "0.9"
[build-dependencies]
winres = "0.1"
[profile.release]
lto = true
strip = true
opt-level = 3