-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
49 lines (42 loc) · 1.1 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
[package]
name = "music-box"
version = "0.1.0"
authors = ["Todd Treece <[email protected]>"]
edition = "2018"
[dependencies]
anyhow = "1.0.38"
bitvec = "0.21.0"
chrono = { version = "0.4.19", features = ["serde"] }
env_logger = "0.8.3"
log = "0.4.14"
r2d2 = "0.8.9"
r2d2_sqlite = "0.17.0"
rodio = {version="0.11", features=["mp3"]}
serde = "1.0.123"
serde_derive = "1.0.123"
serde_json = "1.0.64"
shared-bus = {version="0.2.0", features=["std"]}
dirs = "3.0.1"
actix-web = "3.3.2"
derive_more = "0.99.11"
tokio = { version = "1.2", features = ["full"] }
rand = "0.8.4"
futures = "0.3.16"
lazy_static = "1.4.0"
[dependencies.rusqlite]
version = "0.24.2"
features = ["bundled", "chrono", "serde_json"]
[target.'cfg(target_os= "macos")'.dependencies]
termion = "1.5.6"
tui = "0.14.0"
[target.'cfg(target_arch = "arm")'.dependencies]
rppal = {version="0.11.3", features=["hal"]}
mcp23017 = { git = "https://github.com/mrd0ll4r/mcp23017.git", rev="08947b94f1978eb8ddf56b6026948acbc9a5ea7b" }
[lib]
name = "music_box"
path = "src/lib/lib.rs"
[[bin]]
name = "music-box"
path = "src/main.rs"
[profile.release]
panic = 'abort'