This repository has been archived by the owner on May 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
70 lines (58 loc) · 1.45 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
65
66
67
68
69
70
[package]
name = "noire"
version = "0.1.0"
authors = ["Sebastian Ziebell"]
keywords = ["noire", "gl", "3d", "graphics"]
repository = "https://github.com/justahero/noire-rs.git"
edition = "2018"
[profile.dev]
opt-level = 0
debug = true
lto = false
debug-assertions = true
[[example]]
name = "spinningcube"
path = "examples/01-spinning-cube-wgpu/main.rs"
[[example]]
name = "triangles"
path = "examples/02-triangles/main.rs"
[[example]]
name = "raymarching"
path = "examples/03-raymarching/main.rs"
[[example]]
name = "spotlight"
path = "examples/04-spotlight/main.rs"
[[example]]
name = "worley-noise"
path = "examples/05-worley-noise/main.rs"
[[example]]
name = "opensimplex"
path = "examples/06-opensimplex/main.rs"
[[example]]
name = "marching-squares"
path = "examples/07-marching-squares/main.rs"
[[example]]
name = "circle-noise"
path = "examples/08-circle-noise/main.rs"
[[example]]
name = "metaballs"
path = "examples/09-metaballs/main.rs"
[[example]]
name = "filewatch"
[dependencies]
backtrace = "0.3.46"
cgmath = "0.17.0"
futures = "0.3.5"
gl = "0.14.0"
glfw = "0.37.0"
image = "0.23.8"
notify = "4.0.15"
opensimplex = {path="src/opensimplex", version="0.1.0"}
rand = "0.7.3"
rand_chacha = "0.2.2"
regex = "1.3.6"
renderer = {path="src/renderer", version="0.1.0"}
resources = {path="src/resources", version="0.1.0"}
utils = {path="src/utils", version="0.1.0"}
winit = "0.23.0"
wgpu = "0.6.0"