bliss-rs/Cargo.toml

58 lines
1.7 KiB
TOML
Raw Normal View History

2021-05-14 17:35:08 +03:00
[package]
name = "bliss-rs"
version = "0.6.11"
2023-03-16 20:35:12 +02:00
build = "build.rs"
2021-05-14 17:35:08 +03:00
authors = ["Polochon-street <polochonstreet@gmx.fr>"]
2023-02-14 19:57:16 +02:00
edition = "2021"
license = "GPL-3.0-only"
2021-05-14 18:22:14 +03:00
description = "A song analysis library for making playlists"
homepage = "https://lelele.io/bliss.html"
repository = "https://github.com/Polochon-street/bliss-rs"
keywords = ["audio", "analysis", "MIR", "playlist", "similarity"]
2021-05-14 18:22:14 +03:00
readme = "README.md"
exclude = ["data/", "index.node"]
[lib]
crate-type = ["rlib", "cdylib"]
2021-05-14 17:35:08 +03:00
2021-05-17 18:59:20 +03:00
[package.metadata.docs.rs]
2022-09-28 23:41:59 +03:00
features = ["bliss-audio-aubio-rs/rustdoc", "library"]
2021-05-17 18:59:20 +03:00
no-default-features = true
2021-05-14 17:35:08 +03:00
[dependencies]
# Until https://github.com/aubio/aubio/issues/336 is somehow solved
2021-05-16 15:47:42 +03:00
# Hopefully we'll be able to use the official aubio-rs at some point.
2024-02-11 09:20:48 +02:00
bliss-audio-aubio-rs = { version = "0.2.1", features = ["static"] }
crossbeam = "0.8.2"
ffmpeg-next = { version = "6.1.1", features = ["static"] }
log = "0.4.17"
2023-12-28 20:01:26 +02:00
# `rayon` is used only by `par_mapv_inplace` in chroma.rs.
# TODO: is the speed gain that substantial?
ndarray = { version = "0.15.6", features = ["rayon"] }
ndarray-stats = "0.5.1"
noisy_float = "0.2.0"
2023-12-28 20:01:26 +02:00
adler32 = "1.0.2"
rustfft = "6.1.0"
thiserror = "1.0.40"
strum = "0.24.1"
strum_macros = "0.24.3"
2022-07-13 23:47:05 +03:00
# Deps for the library feature
serde = { version = "1.0", optional = true, features = ["derive"] }
serde_json = { version = "1.0.59", optional = true }
serde_ini = { version = "0.2.0", optional = true }
[dependencies.neon]
version = "1.0.0-alpha.4"
default-features = false
features = ["napi-6", "channel-api", "promise-api", "try-catch-api"]
2022-07-13 23:47:05 +03:00
[dev-dependencies]
ndarray-npy = { version = "0.8.1", default-features = false }
mime_guess = "2.0.3"
glob = "0.3.0"
anyhow = "1.0.45"
2021-11-27 14:13:54 +02:00
clap = "2.33.3"
pretty_assertions = "1.3.0"
2022-07-13 23:47:05 +03:00
serde_json = "1.0.59"