-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
66 lines (55 loc) · 1.19 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
[package]
authors = ["Rahix <[email protected]>"]
name = "pa-visualizer"
version = "0.1.0"
[[bin]]
name = "pa-visualizer-ascii"
path = "src/ascii.rs"
[[bin]]
name = "pa-visualizer-debug"
path = "src/debug.rs"
# The examples below need to be fixed so they compile again... Sorry!
# [[bin]]
# name = "pa-visualizer-python"
# path = "src/python.rs"
#
# [[bin]]
# name = "pa-visualizer-sfml-simple"
# path = "src/sfml-simple.rs"
#
# [[bin]]
# name = "pa-visualizer-sfml-wireline"
# path = "src/sfml-wireline.rs"
#
# [[bin]]
# name = "pa-visualizer-sfml-wirecircle"
# path = "src/sfml-wirecircle.rs"
[[bin]]
name = "pa-visualizer-noambition"
path = "src/noambition/main.rs"
[[bin]]
name = "pa-visualizer-noambition2"
path = "src/noambition2/main.rs"
[[bin]]
name = "pa-visualizer-space"
path = "src/space/main.rs"
[dependencies]
ezconf = "0.1.0"
glium = "0.31.0"
image = "0.18.0"
lazy_static = "1.0.0"
log = "0.3.8"
nalgebra = "0.30.1"
obj = "0.8.0"
pretty_env_logger = "0.1.1"
rand = "0.3.18"
toml = "0.4.6"
# cpython = "0.1.0"
# sfml = "0.14.0"
[dependencies.eagre-ecs]
git = "https://github.com/Rahix/eagre-ecs.git"
optional = false
[dependencies.framework]
path = "framework/"
[workspace]
members = ["framework"]