-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
43 lines (33 loc) · 841 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
35
36
37
38
39
40
41
42
43
[package]
name = "gfx_sciter_examples"
version = "0.1.0"
description = "GFX examples with Sciter UI."
authors = ["pravic <ehysta@gmail.com>"]
repository = "https://github.com/pravic/rust-gfx-sciter"
readme = "README.md"
build = "build.rs"
[dependencies]
user32-sys = "0.1"
gfx = { path = "../gfx/src/render", version = "*" }
gfx_app = { path="../gfx", branch="sciter-window", version="*" }
sciter-rs = { git="https://github.com/pravic/rust-sciter", version="*" }
[dev_dependencies]
log = "0.3"
cgmath = "0.7"
gfx_gl = "0.1"
rand = "0.3"
genmesh = "0.4"
noise = "0.1"
image = "0.6"
[[example]]
name = "blend"
path = "examples/blend/main.rs"
[[example]]
name = "deferred"
path = "examples/deferred/main.rs"
[[example]]
name = "skybox"
path = "examples/skybox/main.rs"
[[example]]
name = "triangle"
path = "examples/triangle/main.rs"