[package]
edition = "2021"
name = "beat-this"
version = "0.3.0"
build = false
exclude = [
"docs/",
"scripts/",
"test_files/",
"models/",
".github/",
".DS_Store",
"Dockerfile",
".dockerignore",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust port of Beat This! — AI-powered beat and downbeat tracking"
readme = "README.md"
keywords = [
"beat-tracking",
"music",
"audio",
"mir",
"onnx",
]
categories = [
"multimedia::audio",
"science",
]
license = "MIT"
repository = "https://github.com/danigb/beat-this-rs"
[lib]
name = "beat_this"
path = "src/lib.rs"
[[bin]]
name = "beat-this"
path = "src/main.rs"
[[test]]
name = "audio_integration"
path = "tests/audio_integration.rs"
[[test]]
name = "cross_runtime"
path = "tests/cross_runtime.rs"
[[test]]
name = "inference_integration"
path = "tests/inference_integration.rs"
[[test]]
name = "mel_integration"
path = "tests/mel_integration.rs"
[[test]]
name = "ort_integration"
path = "tests/ort_integration.rs"
[[test]]
name = "output_integration"
path = "tests/output_integration.rs"
[[test]]
name = "postprocessing_integration"
path = "tests/postprocessing_integration.rs"
[[test]]
name = "public_api_integration"
path = "tests/public_api_integration.rs"
[[test]]
name = "rten_integration"
path = "tests/rten_integration.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.glob]
version = "0.3"
[dependencies.hound]
version = "3.5"
[dependencies.ndarray]
version = "0.17"
[dependencies.ort]
version = "=2.0.0-rc.11"
features = [
"ndarray",
"load-dynamic",
"coreml",
]
[dependencies.rten]
version = "0.24"
features = ["fft"]
[dependencies.rten-tensor]
version = "0.24"
[dependencies.rubato]
version = "0.14"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.symphonia]
version = "0.5"
features = ["all"]
[dev-dependencies.tempfile]
version = "3"
[profile.release]
lto = true
strip = true