summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 26b3d6024515536554d09800c2825500dd5cf74e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[package]
name = "synfone"
version = "0.1.0"
authors = ["Graham Northup <grissess@nexusg.org>"]

[features]
default = ['graphics']

# The following feature will always refer ultimately to whatever backend
# graphics library is chosen--which is subject to change.
graphics = ['glium']

[dependencies]
byteorder = "1.1.0"
rand = "0.3"
unicode-xid = "0.1.0"
portaudio = "0.7.0"

[dependencies.glium]
version = "0.17.1"
optional = true
features = ["glutin"]