forked from bwasty/gltf-viewer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
59 lines (51 loc) · 1.23 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
49
50
51
52
53
54
55
56
57
58
59
[package]
authors = ["Benjamin Wasty <benny.wasty@gmail.com>"]
categories = ["rendering"]
description = "Simple glTF 2.0 viewer"
include = [
"Cargo.toml",
"Cargo.lock", # Note: currently ignored by `cargo package`, see rust-lang/cargo#2263
"**/*.rs",
"src/shaders/*.*",
]
keywords = ["glTF", "3D", "model", "scene", "viewer"]
license = "Unlicense"
name = "gltf-viewer"
readme = "README.md"
repository = "https://github.com/bwasty/gltf-viewer"
version = "0.3.2-alpha.0"
build = false # TODO: git-version doesn't work on Travis
[badges]
maintenance = { status = "passively-maintained" }
[badges.travis-ci]
branch = "master"
repository = "bwasty/gltf-viewer"
[dependencies]
base64 = "0.9.2"
bitflags = "1.0.3"
cgmath = "0.16.1"
clap = "2.32.0"
collision = "0.18.0"
# futures = "0.1.14"
# futures-cpupool = "0.1.5"
gl = "0.10.0"
glutin = "0.18.0"
image = "0.19.0"
# reqwest = "0.7.3"
log = "0.4.3"
num-traits = "0.2.5"
simplelog = "0.5.2"
# itertools = "0.6.3"
[dependencies.gltf]
version = "0.11.2"
features = ["names"]
# [dependencies.mikktspace]
# git = "https://github.com/gltf-rs/mikktspace"
[build-dependencies]
git-version = "0.2.0"
# [profile.dev]
# opt-level = 2
# debug = false
# [profile.release]
# opt-level = 3
# lto = true