forked from Roblox/foreman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (33 loc) · 921 Bytes
/
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
[package]
name = "foreman"
description = "Toolchain manager for simple binary tools"
version = "1.1.0"
authors = [
"Lucien Greathouse <[email protected]>",
"Matt Hargett <[email protected]>",
]
license = "MIT"
homepage = "https://github.com/Roblox/foreman#readme"
repository = "https://github.com/Roblox/foreman"
readme = "README.md"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
command-group = "1.0.8"
dirs = "4.0.0"
env_logger = "0.9.0"
log = "0.4.17"
reqwest = { version = "0.11.10", features = ["json", "blocking"] }
semver = { version = "1.0", features = ["serde"] }
serde = { version = "1.0", features = ["derive"] }
rpassword = "6.0.1"
serde_json = "1.0"
structopt = "0.3.26"
toml = "0.5.9"
toml_edit = "0.14.4"
urlencoding = "2.1.0"
zip = "0.5"
[dev_dependencies]
assert_cmd = "2.0.2"
insta = "1.14"
tempfile = "3.3.0"