Updated submodules

This commit is contained in:
Connor Johnstone
2026-03-17 19:05:21 -04:00
parent 8eeeb8ca8f
commit bdfc840ca4
7 changed files with 25 additions and 21 deletions

15
.gitmodules vendored
View File

@@ -4,3 +4,18 @@
[submodule "shanty-index"]
path = shanty-index
url = ssh://connor@git.rcjohnstone.com:2222/Shanty/index.git
[submodule "shanty-tag"]
path = shanty-tag
url = ssh://connor@git.rcjohnstone.com:2222/Shanty/tag.git
[submodule "shanty-org"]
path = shanty-org
url = ssh://connor@git.rcjohnstone.com:2222/Shanty/org.git
[submodule "shanty-watch"]
path = shanty-watch
url = ssh://connor@git.rcjohnstone.com:2222/Shanty/watch.git
[submodule "shanty-dl"]
path = shanty-dl
url = ssh://connor@git.rcjohnstone.com:2222/Shanty/dl.git
[submodule "shanty-search"]
path = shanty-search
url = ssh://connor@git.rcjohnstone.com:2222/Shanty/search.git

8
Cargo.lock generated
View File

@@ -2542,11 +2542,19 @@ dependencies = [
name = "shanty-search"
version = "0.1.0"
dependencies = [
"anyhow",
"chrono",
"clap",
"dirs",
"sea-orm",
"serde",
"serde_json",
"shanty-db",
"shanty-tag",
"thiserror",
"tokio",
"tracing",
"tracing-subscriber",
]
[[package]]

1
shanty-search Submodule

Submodule shanty-search added at 208dbf422b

View File

@@ -1,13 +0,0 @@
[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 }

View File

@@ -1,4 +0,0 @@
//! 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.

View File

@@ -1,3 +0,0 @@
fn main() {
println!("shanty-search: online music search");
}