-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
32 lines (30 loc) · 1003 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
[workspace]
resolver = "2"
members = ["crates/*"]
[workspace.package]
authors = ["moonlight contributors"]
edition = "2021"
homepage = "https://moonlight-mod.github.io/"
repository = "https://github.com/moonlight-mod/moonlight-installer"
license = "MIT"
version = "0.2.5"
[workspace.dependencies]
libmoonlight = { path = "./crates/libmoonlight" }
reqwest = { version = "0.12.12", features = ["blocking", "json", "rustls-tls"], default-features = false }
eframe = { version = "0.30.0", features = ["accesskit", "default_fonts", "persistence"] }
eyre = "0.6.12"
flate2 = "1.0.35"
egui = "0.30.0"
flume = "0.11.1"
tar = "0.4.43"
serde_json = "1.0.135"
thiserror = "2.0.9"
color-eyre = { version = "0.6.3", default-features = false }
clap = { version = "4.5.24", features = ["derive", "cargo"] }
clap_complete = "4.5.41"
serde = { version = "1.0.217", features = ["derive"] }
log = "0.4.22"
env_logger = "0.11.6"
nix = { version = "0.29.0", features = ["user"] }
serde_ini = "0.2.0"
serde-value = "0.7.0"