-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (28 loc) · 1.02 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
[package]
name = "listenbrainz-mpv"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
crate-type = ["cdylib"]
[dependencies]
calloop = "0.10.5"
id3 = "1.6.0"
libmpv = { git = "https://github.com/StratusFearMe21/libmpv-rs", version = "2.0.1", default-features = false }
libmpv-sys = { git = "https://github.com/StratusFearMe21/libmpv-rs", version = "3.1.0", default-features = false }
memchr = "2.5.0"
serde = { version = "1.0.159", features = ["derive"] }
serde_json = "1.0.95"
ureq = { version = "2.6.2", features = ["json", "tls"], default-features = false }
[target.x86_64-unknown-linux-gnu.dependencies]
dirs = "5.0.0"
dbus = { version = "0.9.7", optional = true }
calloop-dbus = { version = "0.1.1", git = "https://github.com/StratusFearMe21/calloop-dbus", optional = true }
[profile.release]
lto = true
strip = true
codegen-units = 1
[features]
default = ["only-scrobble-if-mbid"]
only-scrobble-if-mbid = []
connman = ["dbus", "calloop-dbus"]