-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
44 lines (41 loc) · 1.07 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
[package]
name = "multimoon"
version = "0.1.2"
edition = "2021"
authors = ["Lone Outpost Tech <[email protected]>"]
description = "MultiMoon - an installer of MoonBit language toolchain."
license = "Apache-2.0"
repository = "https://github.com/lone-outpost-oss/multimoon"
[dependencies]
clap = { version = "4.5.4", features = ["derive"] }
tempdir = "0.3"
reqwest = { version = "0.12.4", default-features = false, features = [
"charset",
"http2",
"macos-system-configuration",
"rustls-tls-native-roots",
] }
url = "2.5.0"
tokio = { version = "1", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
anyhow = "1"
dirs = "5"
sha2 = "0.10.8"
chrono = "0.4.38"
filetime = "0.2.23"
walkdir = "2"
base16ct = { version = "0.2.0", features = ["alloc"] }
xz2 = "0.1"
zip = { version = "2.1.0", default-features = false, features = [
"aes-crypto",
"deflate",
"deflate-zlib",
"deflate-zopfli",
"bzip2",
"time",
"zstd",
] }
[target.'cfg(windows)'.dependencies]
winreg = "0.52.0"
[target.'cfg(unix)'.dependencies]