forked from amethyst/amethyst
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (30 loc) · 1.09 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
[package]
name = "amethyst_utils"
version = "0.15.3"
authors = [
"Simon Rönnberg <[email protected]>",
"Joël Lupien <[email protected]>",
"Amethyst Foundation <[email protected]>",
]
edition = "2018"
description = "Amethyst utils"
documentation = "https://docs.amethyst.rs/stable/amethyst_utils/"
homepage = "https://amethyst.rs/"
repository = "https://github.com/amethyst/amethyst"
license = "MIT/Apache-2.0"
[dependencies]
amethyst_assets = { path = "../amethyst_assets", version = "0.15.3" }
amethyst_core = { path = "../amethyst_core", version = "0.15.3" }
amethyst_error = { path = "../amethyst_error", version = "0.15.3" }
amethyst_rendy = { path = "../amethyst_rendy", version = "0.15.3" }
amethyst_window = { path = "../amethyst_window", version = "0.15.3" }
derive-new = "0.5"
log = "0.4"
serde = { version = "1", features = ["derive"] }
dunce = "1"
thread_profiler = { version = "0.3", optional = true }
derivative = "2.1.3"
[dev-dependencies]
amethyst = { path = "../", version = "0.15.3", features = ["renderer"] }
[features]
profiler = ["thread_profiler/thread_profiler"]