forked from amethyst/amethyst
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (32 loc) · 1.14 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
[package]
name = "amethyst_gltf"
version = "0.9.0"
authors = ["Rhuagh <[email protected]>", "Amethyst Foundation <[email protected]>"]
edition = "2018"
description = "GLTF asset loading"
documentation = "https://docs.amethyst.rs/stable/amethyst_gltf/"
homepage = "https://amethyst.rs/"
repository = "https://github.com/amethyst/amethyst"
license = "MIT/Apache-2.0"
[badges]
travis-ci = { repository = "amethyst/amethyst" }
[dependencies]
amethyst_assets = { path = "../amethyst_assets/", version = "0.10.0" }
amethyst_animation = { path = "../amethyst_animation/", version = "0.9.0" }
amethyst_core = { path = "../amethyst_core/", version = "0.9.0" }
amethyst_error = { path = "../amethyst_error/", version = "0.4.0" }
amethyst_rendy = { path = "../amethyst_rendy", version = "0.4.0" }
err-derive = "0.2"
base64 = "0.11"
fnv = "1"
gltf = "0.15"
hibitset = { version = "0.6.2", features = ["parallel"] }
itertools = "0.8"
log = "0.4.6"
mikktspace = "0.2.0"
serde = { version = "1.0", features = ["derive"] }
thread_profiler = { version = "0.3", optional = true }
image = "0.22.2"
derivative = "1.0"
[features]
profiler = [ "thread_profiler/thread_profiler" ]