Added the scaffolding

This commit is contained in:
Connor Johnstone
2026-03-17 13:55:42 -04:00
parent cf95c520a0
commit fb05e2d5c0
39 changed files with 944 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
[package]
name = "shanty-index"
version.workspace = true
edition.workspace = true
license.workspace = true
description = "Music file indexing and metadata extraction for Shanty"
[dependencies]
shanty-db = { path = "../shanty-db" }
clap = { workspace = true }
serde = { workspace = true }
thiserror = { workspace = true }
tracing = { workspace = true }
+4
View File
@@ -0,0 +1,4 @@
//! Music file indexing and metadata extraction.
//!
//! Scans a directory tree of music files, extracts embedded metadata (ID3, Vorbis
//! comments, etc.), and stores everything in the Shanty database.
+3
View File
@@ -0,0 +1,3 @@
fn main() {
println!("shanty-index: music file indexing and metadata extraction");
}