2021-05-14 17:35:08 +03:00
|
|
|
[package]
|
2023-12-26 19:24:40 +02:00
|
|
|
name = "bliss-rs"
|
2023-06-19 17:36:11 +03:00
|
|
|
version = "0.6.9"
|
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"
|
2021-05-15 20:21:39 +03:00
|
|
|
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"
|
2021-06-01 19:02:15 +03:00
|
|
|
keywords = ["audio", "analysis", "MIR", "playlist", "similarity"]
|
2021-05-14 18:22:14 +03:00
|
|
|
readme = "README.md"
|
2023-12-26 19:24:40 +02:00
|
|
|
exclude = ["index.node"]
|
|
|
|
|
|
|
|
[lib]
|
2023-12-26 19:24:40 +02:00
|
|
|
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]
|
2021-05-15 19:32:13 +03:00
|
|
|
# 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"] }
|
2023-03-09 00:33:42 +02:00
|
|
|
crossbeam = "0.8.2"
|
2024-02-11 09:20:48 +02:00
|
|
|
ffmpeg-next = { version = "6.0.0", features = ["static"] }
|
2023-03-09 00:33:42 +02:00
|
|
|
log = "0.4.17"
|
|
|
|
ndarray = { version = "0.15.6", features = ["rayon"] }
|
|
|
|
ndarray-stats = "0.5.1"
|
|
|
|
noisy_float = "0.2.0"
|
|
|
|
ripemd = "0.1.3"
|
|
|
|
rustfft = "6.1.0"
|
|
|
|
thiserror = "1.0.40"
|
|
|
|
strum = "0.24.1"
|
|
|
|
strum_macros = "0.24.3"
|
2021-11-03 20:57:16 +02:00
|
|
|
|
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 }
|
|
|
|
|
2023-12-26 19:24:40 +02:00
|
|
|
[dependencies.neon]
|
2023-12-26 22:32:17 +02:00
|
|
|
version = "1.0.0-alpha.4"
|
2023-12-26 19:24:40 +02:00
|
|
|
default-features = false
|
|
|
|
features = ["napi-6", "channel-api", "promise-api", "try-catch-api"]
|
|
|
|
|
2021-11-03 20:57:16 +02:00
|
|
|
[dev-dependencies]
|
2023-03-09 00:33:42 +02:00
|
|
|
ndarray-npy = { version = "0.8.1", default-features = false }
|
2021-11-03 20:57:16 +02:00
|
|
|
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"
|
2023-03-09 00:33:42 +02:00
|
|
|
pretty_assertions = "1.3.0"
|
2022-07-13 23:47:05 +03:00
|
|
|
serde_json = "1.0.59"
|