forked from librespot-org/librespot
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCargo.toml
71 lines (58 loc) · 1.38 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
[package]
name = "spotty"
version = "1.3.1"
authors = ["Librespot Org", "Michael Herger <[email protected]>"]
license = "MIT"
keywords = ["spotify"]
repository = "https://github.com/michaelherger/librespot"
readme = "README.md"
edition = "2018"
[workspace]
[lib]
name = "librespot"
path = "src/lib.rs"
[[bin]]
name = "spotty"
path = "src/main.rs"
doc = false
[dependencies.librespot-audio]
path = "audio"
version = "0.4.2"
[dependencies.librespot-connect]
path = "connect"
version = "0.4.2"
[dependencies.librespot-core]
path = "core"
version = "0.4.2"
[dependencies.librespot-discovery]
path = "discovery"
version = "0.4.2"
[dependencies.librespot-metadata]
path = "metadata"
version = "0.4.2"
[dependencies.librespot-playback]
path = "playback"
version = "0.4.2"
[dependencies.librespot-protocol]
path = "protocol"
version = "0.4.2"
[dependencies]
base64 = "0.13"
env_logger = {version = "0.9", default-features = false, features = ["termcolor","humantime","atty"]}
futures-util = { version = "0.3", default_features = false }
getopts = "0.2.21"
hex = "0.4"
hyper = "0.14"
log = "0.4"
rpassword = "6.0"
serde_json = "0.9.5"
thiserror = "1.0"
tokio = { version = "1", features = ["rt", "rt-multi-thread", "macros", "signal", "sync", "process"] }
url = "2.2"
sha-1 = "0.9"
[features]
with-dns-sd = ["librespot-discovery/with-dns-sd"]
[profile.release]
lto = true
panic = "abort"
strip = "symbols"