-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
90 lines (81 loc) · 1.96 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
[package]
name = "rust-oids"
version = "0.14.0"
readme = "README.md"
description = "A Rust-based A-life playground"
license = "Apache 2.0"
authors = [
"Nico Orru <[email protected]>"
]
[features]
default = []
profiler = []
capture = []
[[bin]]
name = "rust-oids"
path = "src/main.rs"
[dependencies]
num ="*"
num-traits="*"
log="*"
itertools = "*"
log4rs = "*"
cgmath="*"
rand = "0.3"
chrono="*"
enum_primitive="*"
bitflags="1.0"
bit-set="*"
csv = "0.15"
rustc-serialize="*"
image = "*"
wrapped2d = "0.4.0"
gfx = "0.18"
gfx_device_gl = "0.16.2"
#sound
dasp="0.11.0"
dasp_slice="0.11.0"
dasp_sample="0.11.0"
dasp_signal="0.11.0"
pitch_calc="*"
portaudio="*"
#sys
ctrlc = "*"
dirs = "*"
getopts = "*"
cpuprofiler = "*"
rayon = "*"
#serialization
serde = "*"
serde_derive = "*"
serde_json = "*"
#gui
gl = "*"
winit = "0.10"
glutin = "0.12"
conrod = { features = ["winit"], version = "0.58" }
#conrod = { features = ["winit"], git = "https://github.com/itadinanta/conrod", branch = "branch/winit_0.10.0" }
#controller
gilrs = "*"
#
[target.'cfg(target_os="linux")'.dependencies]
thread-priority = "*"
[package.metadata.deb]
maintainer = "Nico Orru <[email protected]>"
copyright = "2016-2020, Nico Orru <[email protected]>"
license-file = ["LICENSE", "4"]
extended-description = """A Rust-based A-life playground. \
https://github.com/itadinanta/rust-oids"""
depends = "$auto,libportaudio2,libasound2,libudev1"
section = "games"
priority = "optional"
assets = [
["target/release/rust-oids", "usr/bin/", "755"],
["resources/minion_gene_pool.csv", "usr/share/rust-oids/resources/", "644"],
["resources/fonts/*", "usr/share/rust-oids/resources/fonts/", "644"],
["resources/shaders/effects/*", "usr/share/rust-oids/resources/shaders/effects/", "644"],
["resources/shaders/forward/*", "usr/share/rust-oids/resources/shaders/forward/", "644"],
["README.md", "usr/share/doc/rust-oids/", "644"],
["TODO.md", "usr/share/doc/rust-oids/", "644"],
["LICENSE", "usr/share/doc/rust-oids/", "644"],
]