Added the scaffolding
This commit is contained in:
13
shanty-tag/Cargo.toml
Normal file
13
shanty-tag/Cargo.toml
Normal file
@@ -0,0 +1,13 @@
|
||||
[package]
|
||||
name = "shanty-tag"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
description = "Metadata tagging via online databases for Shanty"
|
||||
|
||||
[dependencies]
|
||||
shanty-db = { path = "../shanty-db" }
|
||||
clap = { workspace = true }
|
||||
serde = { workspace = true }
|
||||
thiserror = { workspace = true }
|
||||
tracing = { workspace = true }
|
||||
5
shanty-tag/src/lib.rs
Normal file
5
shanty-tag/src/lib.rs
Normal file
@@ -0,0 +1,5 @@
|
||||
//! Metadata tagging via online databases.
|
||||
//!
|
||||
//! Fills in missing or incorrect metadata on music files by querying online
|
||||
//! databases such as MusicBrainz. Supports fuzzy matching and configurable
|
||||
//! confidence thresholds.
|
||||
3
shanty-tag/src/main.rs
Normal file
3
shanty-tag/src/main.rs
Normal file
@@ -0,0 +1,3 @@
|
||||
fn main() {
|
||||
println!("shanty-tag: metadata tagging via online databases");
|
||||
}
|
||||
Reference in New Issue
Block a user