forked from RustAudio/rodio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
49 lines (42 loc) · 832 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
44
45
46
47
48
49
[package]
authors = ["Pierre Krieger <pierre.krieger1708@gmail.com>"]
description = "Audio playback library"
documentation = "http://docs.rs/rodio"
keywords = [
"audio",
"playback",
"gamedev",
]
license = "MIT/Apache-2.0"
name = "rodio"
repository = "https://github.com/tomaka/rodio"
version = "0.8.1"
[dependencies]
cgmath = "0.17"
lazy_static = "1.0.0"
parking_lot = "0.7.1"
[dependencies.claxon]
optional = true
version = "0.4.1"
[dependencies.cpal]
git = "https://github.com/YellowInnovation/cpal"
[dependencies.hound]
optional = true
version = "3.3.1"
[dependencies.lewton]
optional = true
version = "0.9"
[dependencies.minimp3]
optional = true
version = "0.3.2"
[features]
default = [
"flac",
"vorbis",
"wav",
"mp3",
]
flac = ["claxon"]
mp3 = ["minimp3"]
vorbis = ["lewton"]
wav = ["hound"]