-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
41 lines (37 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
[package]
name = "melatonin"
description = "A version manager for the BYOND environment"
version = "0.7.8"
license = "GPL-3.0-or-later"
readme = "README.md"
repository = "https://github.com/atakiya/melatonin/"
keywords = ["byond", "version", "manager", "dreammaker"]
edition = "2021"
authors = ["Avunia Takiya <avunia@takiya.eu>"]
publish = true
default-run = "bvm"
[[bin]]
name = "bvm"
path = "src/main.rs"
[[bin]]
name = "bvm-shim"
path = "src/bin/shim.rs"
[dependencies]
anyhow = "1"
clap = { version = "4", default-features = false, features = ["derive", "env", "unicode", "wrap_help"] }
clap-verbosity-flag = "3"
colored = "2"
directories = "5"
downloader = "0.2"
indicatif = "0.17"
log = "0.4"
minreq = { version = "2", features = ["https"] }
regex = "1"
serde = { version = "1", default-features = false, features = ["derive", "std"] }
serde_json = "1"
simple_logger = { version = "5", default-features = false, features = ["colors"] }
tempfile = "3"
url = "2"
zip = { version = "2", default-features = false, features = ["deflate"] }
[target.'cfg(windows)'.dependencies]
winreg = "0.52"