bliss-rs/Cargo.toml

46 lines
1.2 KiB
TOML
Raw Normal View History

2021-05-14 15:35:08 +01:00
[package]
name = "bliss-rs"
version = "0.1.1"
2021-05-14 15:35:08 +01:00
authors = ["Polochon-street <polochonstreet@gmx.fr>"]
edition = "2018"
license = "GPL-3.0-only"
2021-05-14 16:22:14 +01:00
description = "A song analysis library for making playlists"
homepage = "https://lelele.io/bliss.html"
repository = "https://github.com/Polochon-street/bliss-rs"
readme = "README.md"
2021-05-14 15:35:08 +01:00
[features]
# Building ffmpeg until either
# https://github.com/zmwangx/rust-ffmpeg/pull/60
# or https://github.com/zmwangx/rust-ffmpeg/pull/62 is in
2021-05-16 13:47:42 +01:00
default = ["bliss-audio-aubio-rs/static", "build-ffmpeg"]
2021-05-14 15:35:08 +01:00
build-ffmpeg = ["ffmpeg-next/build"]
bench = []
[dependencies]
ripemd160 = "0.9.0"
ndarray-npy = "0.8.0"
ndarray = { version = "0.15.0", features = ["rayon"] }
num_cpus = "1.13.0"
ndarray-stats = "0.5.0"
rustfft = "5.0.1"
lazy_static = "1.4.0"
rayon = "1.5.0"
crossbeam = "0.8.0"
noisy_float = "0.2.0"
ffmpeg-next = "4.3.8"
2021-05-14 15:35:08 +01:00
log = "0.4.14"
env_logger = "0.8.3"
thiserror = "1.0.24"
# Until https://github.com/aubio/aubio/issues/336 is somehow solved
2021-05-16 13:47:42 +01:00
# Hopefully we'll be able to use the official aubio-rs at some point.
bliss-audio-aubio-rs = "0.2.0"
2021-05-14 15:35:08 +01:00
[dev-dependencies]
mpd = "0.0.12"
rusqlite = "0.25.0"
dirs = "3.0.1"
tempdir = "0.3.7"
clap = "2.33.3"
anyhow = "1.0.40"