forked from amethyst/amethyst
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (29 loc) · 842 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
[package]
name = "amethyst_test"
version = "0.5.0"
authors = ["Azriel Hoh <[email protected]>", "Amethyst Foundation <[email protected]>"]
edition = "2018"
description = "Amethyst test utilities crate"
keywords = ["test", "amethyst"]
categories = ["game-engines"]
documentation = "https://docs.amethyst.rs/stable/amethyst_test/"
homepage = "https://amethyst.rs/"
repository = "https://github.com/amethyst/amethyst"
license = "MIT/Apache-2.0"
[dependencies]
amethyst = { path = "..", version = "0.14.0" }
derivative = "1.0"
derive-new = "0.5"
derive_deref = "1.1.0"
lazy_static = "1.3"
log = "0.4"
[dev-dependencies]
serde = "1.0"
[features]
default = []
nightly = ["amethyst/nightly"]
empty = ["amethyst/empty"]
metal = ["amethyst/metal"]
vulkan = ["amethyst/vulkan"]
# Used to tag tests that need an audio backend to run.
audio = []