-
-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (30 loc) · 797 Bytes
/
Cargo.toml
File metadata and controls
32 lines (30 loc) · 797 Bytes
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
[workspace]
members = [
"apps/rgsm-gui/src-tauri",
"apps/rgsm-cli",
"crates/rgsm-core",
"crates/rgsm-ffi",
]
resolver = "2"
[workspace.package]
version = "1.9.0"
edition = "2024"
rust-version = "1.85.1"
license = "AGPL-3.0-only"
[workspace.dependencies]
anyhow = "1.0.102"
async-trait = "0.1"
criterion = "0.8.2"
log = "0.4.29"
open = "5.3.3"
rgsm-core = { path = "crates/rgsm-core" }
rust-i18n = "3.1.5"
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.149"
specta = { version = "=2.0.0-rc.22", features = ["derive"] }
temp-dir = "0.1.16"
thiserror = "2.0.18"
tokio = { version = "1.50.0", features = ["full"] }
tokio-util = { version = "0.7.18", features = ["full"] }
winreg = "0.55"
zip = { version = "5.1.1", features = ["deflate", "bzip2", "zstd"] }