forked from sebcrozet/kiss3d
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
64 lines (53 loc) · 1.75 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
60
61
62
63
64
[package]
name = "kiss3d"
version = "0.31.0"
authors = [ "Sébastien Crozet <[email protected]>" ]
description = "3D graphics engine for Rust."
repository = "https://github.com/sebcrozet/kiss3d"
readme = "README.md"
keywords = [ "3D", "graphics", "OpenGL", "KISS" ]
license = "BSD-3-Clause"
autoexamples = true
edition = "2018"
include = [
"src/**/*.rs",
"src/**/*.frag",
"src/**/*.vert",
"src/text/*.ttf",
"examples/**/*.rs",
"examples/media",
"examples/Cargo.toml",
"Cargo.toml",
"LICENSE",
"Readme.md"
]
[lib]
name = "kiss3d"
path = "src/lib.rs"
[features]
conrod = [ "conrod_core" ]
[dependencies]
either = "1"
libc = "0.2"
bitflags = "1.2"
num-traits = "0.2"
nalgebra = "0.26"
ncollide3d = "0.29"
image = "0.23"
serde = "1"
serde_derive = "1"
rusttype = { version = "0.8", features = [ "gpu_cache" ] }
instant = { version = "0.1", features = [ "wasm-bindgen" ]}
conrod_core = { version = "0.71", features = [ "wasm-bindgen" ], optional = true }
glow = { git = "https://github.com/nus-mmsys/glow", version = "0.10.0", branch = "main" }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
glutin = "0.26"
# We repeat all three targets instead of any(target_arch = "wasm32", target_arch = "asmjs")
# to avoid https://github.com/koute/stdweb/issues/135
[target.wasm32-unknown-unknown.dependencies]
wasm-bindgen = "0.2"
web-sys = { version = "0.3", features = [ "console", "KeyEvent", "KeyboardEvent", "MouseEvent", "WheelEvent", "Touch", "TouchEvent", "TouchList", "HtmlCanvasElement", "HtmlElement", "Window", "UiEvent", "Event", "EventTarget", "Element", "DomRect" ] }
[dev-dependencies]
rand = "0.8"
ncollide2d = "0.29"
nalgebra = { version = "0.26", features = [ "rand" ] }