forked from amethyst/tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
45 lines (37 loc) · 871 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
37
38
39
40
41
42
43
44
45
[package]
name = "amethyst_tools"
version = "0.11.0"
authors = ["Eyal Kalderon <[email protected]>"]
description = "Game development tools for the Amethyst engine"
keywords = ["game", "engine", "tool", "editor", "amethyst"]
edition = "2018"
build = "build.rs"
repository = "https://github.com/amethyst/amethyst_tools"
readme = "README.md"
license = "MIT/Apache-2.0"
[lib]
name = "amethyst_cli"
path = "src/lib.rs"
[[bin]]
name = "amethyst"
path = "src/main.rs"
[dependencies]
ansi_term = "0.11.0"
clap = "2.33.0"
env_proxy = "0.3.1"
error-chain = "0.12.2"
liquid = "0.19.0"
regex = "1.1.7"
serde = "1.0.92"
serde_derive = "1.0.92"
serde_json = "1.0.39"
[dependencies.reqwest]
version = "0.9.18"
default-features = false
features = ["rustls-tls"]
[dependencies.semver]
features = ["serde"]
version = "0.9.0"
[build-dependencies]
ron = "0.5.1"
walkdir = "2.2.8"