-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
60 lines (50 loc) · 1.41 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
[package]
name = "gdvm"
version = "0.5.0"
edition = "2021"
description = "Godot Version Manager"
license = "ISC"
repository = "https://github.com/adalinesimonian/gdvm"
[dependencies]
# For command-line argument parsing:
clap = { version = "4.5.26", features = ["derive", "wrap_help"] }
regex = "1.11.1"
# For cross-platform paths:
directories = "6.0.0"
# For i18n:
fluent-bundle = "0.15.3"
fluent-langneg = "0.14.1"
unic-langid = { version = "0.9.5", features = ["unic-langid-macros"] }
anyhow = "1.0.95"
terminal_size = "0.4.1"
textwrap = { version = "0.16.1", features = [
"unicode-width",
"unicode-linebreak",
] }
# For downloading files:
reqwest = { version = "0.12.12", features = [
"json",
"gzip",
"brotli",
"deflate",
"rustls-tls",
"blocking",
] }
futures-io = "0.3.31"
indicatif = "0.17.9"
sha2 = "0.10.8"
serde_json = "1.0.135"
serde = { version = "1.0.217", features = ["derive"] }
semver = "1.0.24"
# For file system operations:
zip = "2.2.2"
# For starting Godot:
[target.'cfg(target_os = "windows")'.dependencies]
winapi = { version = "0.3.9", features = ["winbase"] }
[target.'cfg(not(target_os = "windows"))'.dependencies]
daemonize = "0.5.0"
# OpenSSL for cross-compiling:
[target.i686-unknown-linux-gnu.dependencies]
openssl = { version = "0.10.68", features = ["vendored"] }
[target.aarch64-unknown-linux-gnu.dependencies]
openssl = { version = "0.10.68", features = ["vendored"] }