This repository has been archived by the owner on Sep 28, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
58 lines (52 loc) · 1.66 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
[package]
name = "mr_llamas_wonderful_soundboard"
version = "1.0.1"
authors = ["ThePerkinrex <theperkinrex@gmail.com>"]
edition = "2018"
[target.x86_64-pc-windows-gnu]
linker = "x86_64-w64-mingw32-gcc"
ar = "x86_64-w64-mingw32-gcc-ar"
[features]
autoloop = ["libpulse-binding"]
default = ["wav", "mp3"]
flac = ["claxon"]
mp3 = ["minimp3", "mp3-duration"]
opus = ["audiopus", "ogg", "ogg_metadata"]
vorbis = ["lewton", "ogg_metadata"]
wav = ["hound"]
xm = ["libxm-soundboard"]
[dependencies]
iced = {version = "0.1.1", features=["image"]}
iced_native = "0.2.2"
ron = "0.6.0"
serde = "1.0.114"
miniaudio = "0.10.0"
anyhow = "1.0.32"
log = "0.4.11"
fern = "0.6.0"
recolored = "1.9.3"
crossbeam-channel = "0.4.3"
parking_lot = "0.11.0"
strum = "0.18.0"
strum_macros = "0.18.0"
directories = "3.0.1"
reqwest = { version = "0.10", features = ["blocking"] }
zip-extract = "0.1.0"
rdev = {path = "./rdev", features = ["serialize"]}
lazy_static = "1.4.0"
smol = {version = "0.3.3", features = ["tokio02"] }
futures-util = "0.3.5"
async-std = { version = "1.6.2", features = ["unstable"] }
# AUTOLOOP
# ctrlc = {version = "3.1.5", features = ["termination"], optional = true}
libpulse-binding = {version = "2.16", features = ["pa_latest_common"], optional = true}
# AUDIO DECODING
audiopus = {version = "0.2", optional = true}
claxon = {version = "0.4", optional = true}
hound = {version = "3", optional = true}
lewton = {version = "0.10", optional = true}
libxm-soundboard = {version = "0.0.1", optional = true}
minimp3 = {version = "0.3", optional = true}
mp3-duration = {version = "0.1.10", optional = true}
ogg = {version = "0.7", optional = true}
ogg_metadata = {version = "0.4", optional = true}