-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathCargo.toml
63 lines (56 loc) · 1.42 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
[package]
name = "geode"
version = "3.4.0"
authors = [
"HJfod <dreadrollmusic@gmail.com>",
"Camila314 <ilaca314@gmail.com>",
"matcool",
"ConfiG <cgytrus@cgyt.ru>",
]
edition = "2021"
build = "build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.5", features = ["derive"] }
clap_complete = "4.5"
clap_mangen = "0.2.21"
colored = "2.1.0"
dirs = "5.0.1"
fontdue = "0.9.2"
git2 = "0.19.0"
glob = "0.3.1"
image = "0.25.1"
imageproc = "0.25.0"
signed-distance-field = "0.6.3"
path-absolutize = "3.1.1"
plist = "1.6.1"
rustyline = "14.0.0"
serde = { version = "1.0.203", features = ["derive"] }
serde_json = { version = "1.0.117", features = ["preserve_order"] }
sha256 = "1.5.0"
texture_packer = "0.29.0"
walkdir = "2.5.0"
zip = "2.1.3"
semver = "1.0.23"
reqwest = { version = "0.12.5", features = ["json", "blocking"] }
cfg-if = "1.0.0"
regex = "1.10.5"
sha3 = "0.10.8"
hex = "0.4.3"
edit-distance = "2.1.0"
which = "6.0.1"
vec1 = { version = "1.12.1", features = ["serde"] }
crossterm_input = "0.5.0"
open = "5.1.4"
rand = "0.8.5"
tempfile = "3"
dialoguer = "0.11.0"
[target.'cfg(target_os = "android")'.dependencies]
terminal-clipboard = "0.4.1"
[target.'cfg(not(target_os = "android"))'.dependencies]
cli-clipboard = "0.4.0"
[target.'cfg(windows)'.dependencies]
winreg = "0.52.0"
ansi_term = "0.12"
[build-dependencies]
winres = "0.1.12"