1
[package]
2
name = "blissify"
3
version = "0.5.1"
4
authors = ["Polochon-street <polochonstreet@gmx.fr>"]
5
edition = "2021"
6
license = "GPL-3.0-only"
7
description = "An MPD plugin for creating smart playlists"
8
repository = "https://github.com/Polochon-street/blissify-rs"
9
keywords = ["audio", "song", "similarity", "playlist"]
10
readme = "README.md"
11
12
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
13
14
[features]
15
default = ["bliss-audio/library"]
16
# Build for raspberry pis
17
rpi = ["bliss-audio/rpi"]
18
# Make `cargo test` also run the integration tests. You need to have
19
# MPD installed for it to work, and it will launch its own instance of
20
# MPD.
21
integration-tests = ["bliss-audio/integration-tests"]
22
23
[dependencies]
24
bliss-audio = "0.9.2"
25
mpd = "0.1.0"
26
dirs = "3.0.1"
27
tempdir = "0.3.7"
28
clap = { version = "2.33.3", features = ["wrap_help"] }
29
anyhow = "1.0.58"
30
log = "0.4.14"
31
env_logger = "0.8.4"
32
indicatif = "0.16.2"
33
noisy_float = "0.2.0"
34
termion = "1.5.6"
35
serde = "1.0"
36
pretty_assertions = "1.2.1"
37
extended-isolation-forest = { version = "0.2.3", default-features = false }
38
39
[dev-dependencies]
40
assert_cmd = "2.0.14"
41
predicates = "3.1.0"
42
assert_fs = "1.1.1"
43