-
-
Notifications
You must be signed in to change notification settings - Fork 61
/
Cargo.toml
94 lines (82 loc) · 2.83 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
[package]
name = "ludusavi"
version = "0.26.0"
authors = ["mtkennerly <[email protected]>"]
edition = "2021"
description = "Game save backup tool"
repository = "https://github.com/mtkennerly/ludusavi"
readme = "README.md"
license = "MIT"
[dependencies]
base64 = "0.22.1"
byte-unit = "5.1.4"
chrono = { version = "0.4.38", features = ["serde"] }
clap = { version = "4.5.17", features = ["derive", "wrap_help"] }
clap_complete = "4.5.28"
dialoguer = "0.11.0"
dirs = "5.0.1"
filetime = "0.2.25"
flexi_logger = { version = "0.29.3", features = ["async"] }
fluent = "0.16.1"
fuzzy-matcher = "0.3.7"
globetter = "0.2.0"
globset = "0.4.15"
iced = { version = "0.13.1", features = ["advanced", "tiny-skia", "tokio", "wgpu"], default-features = false }
image = { version = "0.25.2", features = ["ico"], default-features = false }
indicatif = { version = "0.17.8", features = ["rayon"] }
intl-memoizer = "0.5.2"
itertools = "0.13.0"
log = "0.4.22"
once_cell = "1.19.0"
opener = "0.7.2"
rayon = "1.10.0"
regashii = "0.2.0"
regex = "1.10.6"
reqwest = { version = "0.12.7", features = ["blocking", "gzip", "rustls-tls"], default-features = false }
rfd = { version = "0.15.0", features = ["gtk3"], default-features = false }
rusqlite = { version = "0.32.1", features = ["bundled"] }
schemars = { version = "0.8.21", features = ["chrono"] }
semver = { version = "1.0.23", features = ["serde"] }
serde = { version = "1.0.210", features = ["derive"] }
serde_json = "1.0.128"
serde_yaml = "0.8.25"
sha1 = "0.10.6"
shlex = "1.3.0"
signal-hook = "0.3.17"
steamlocate = "2.0.0-beta.2"
tokio = { version = "1.40.0", features = ["macros", "time"] }
typed-path = "0.9.2"
unic-langid = "0.9.5"
walkdir = "2.5.0"
which = "6.0.3"
whoami = "1.5.2"
zip = "0.6.6"
[target.'cfg(windows)'.dependencies]
known-folders = "1.2.0"
winreg = "0.52.0"
windows = { version = "0.58.0", features = ["Win32_System_Console", "Win32_System_Threading"] }
[target.'cfg(windows)'.build-dependencies]
winres = "0.1.12"
[dev-dependencies]
pretty_assertions = "1.4.1"
velcro = "0.5.4"
[profile.dev]
opt-level = 1
[profile.dev.package."*"]
opt-level = 3
[profile.release]
lto = "thin"
strip = true
[package.metadata.binstall]
bin-dir = "{ bin }{ binary-ext }"
pkg-fmt = "zip"
[package.metadata.binstall.overrides.x86_64-pc-windows-msvc]
pkg-url = "{ repo }/releases/download/v{ version }/{ name }-v{ version }-win64{ archive-suffix }"
[package.metadata.binstall.overrides.i686-pc-windows-msvc]
pkg-url = "{ repo }/releases/download/v{ version }/{ name }-v{ version }-win32{ archive-suffix }"
[package.metadata.binstall.overrides.x86_64-unknown-linux-gnu]
pkg-url = "{ repo }/releases/download/v{ version }/{ name }-v{ version }-linux{ archive-suffix }"
pkg-fmt = "tgz"
[package.metadata.binstall.overrides.x86_64-apple-darwin]
pkg-url = "{ repo }/releases/download/v{ version }/{ name }-v{ version }-mac{ archive-suffix }"
pkg-fmt = "tgz"