-
Notifications
You must be signed in to change notification settings - Fork 11
/
Cargo.toml
48 lines (44 loc) · 1.06 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
[package]
name = "rbx_mantle"
description = "Infra-as-code for Roblox"
homepage = "https://mantle-docs.vercel.app"
repository = "https://github.com/blake-mealey/mantle"
version = "0.10.5"
authors = ["Blake Mealey <[email protected]>"]
license = "MIT"
edition = "2018"
include = [
"src",
"Cargo.toml",
"README.md",
"LICENSE"
]
[[bin]]
name = "mantle"
path = "src/main.rs"
[lib]
path = "src/lib/mod.rs"
[dependencies]
serde_json = { version = "1.0.59" }
serde_yaml = { version = "0.8" }
serde = { version = "1.0", features = ["derive"] }
clap = "2.33.0"
reqwest = { version = "0.11.6", features = ["cookies", "json", "multipart", "stream"] }
cookie = "0.15.1"
glob = "0.3.0"
mime_guess = "2.0.3"
sha2 = "0.9.8"
difference = "2.0.0"
rusoto_core = "0.47.0"
rusoto_s3 = "0.47.0"
tokio = { version = "1", features = ["full"] }
tokio-util = "0.6.9"
async-trait = "0.1.51"
chrono = "0.4"
yansi = "0.5.0"
scraper = "0.12.0"
url = { version = "2.2.2", features = ["serde"] }
base64 = "0.13.0"
serde_repr = "0.1.7"
[target.'cfg(windows)'.dependencies]
winreg = "0.10.1"