Added the scaffolding
This commit is contained in:
13
shanty-search/Cargo.toml
Normal file
13
shanty-search/Cargo.toml
Normal file
@@ -0,0 +1,13 @@
|
||||
[package]
|
||||
name = "shanty-search"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
description = "Online music search for Shanty"
|
||||
|
||||
[dependencies]
|
||||
shanty-db = { path = "../shanty-db" }
|
||||
clap = { workspace = true }
|
||||
serde = { workspace = true }
|
||||
thiserror = { workspace = true }
|
||||
tracing = { workspace = true }
|
||||
4
shanty-search/src/lib.rs
Normal file
4
shanty-search/src/lib.rs
Normal file
@@ -0,0 +1,4 @@
|
||||
//! Online music search.
|
||||
//!
|
||||
//! Searches for artists, albums, and tracks via online databases (MusicBrainz,
|
||||
//! Last.fm, etc.) and returns structured results for adding to the library.
|
||||
3
shanty-search/src/main.rs
Normal file
3
shanty-search/src/main.rs
Normal file
@@ -0,0 +1,3 @@
|
||||
fn main() {
|
||||
println!("shanty-search: online music search");
|
||||
}
|
||||
Reference in New Issue
Block a user