Added db subrepo

This commit is contained in:
Connor Johnstone
2026-03-17 14:19:53 -04:00
parent fb05e2d5c0
commit 058d9cda9e
5 changed files with 2739 additions and 27 deletions

3
.gitmodules vendored Normal file
View File

@@ -0,0 +1,3 @@
[submodule "shanty-db"]
path = shanty-db
url = ssh://connor@git.rcjohnstone.com:2222/Shanty/db.git

2748
Cargo.lock generated

File diff suppressed because it is too large Load Diff

1
shanty-db Submodule

Submodule shanty-db added at 305ddff278

View File

@@ -1,10 +0,0 @@
[package]
name = "shanty-db"
version.workspace = true
edition.workspace = true
license.workspace = true
description = "Shared database schema and access layer for Shanty"
[dependencies]
serde = { workspace = true }
thiserror = { workspace = true }

View File

@@ -1,4 +0,0 @@
//! Shared database schema and access layer for Shanty.
//!
//! This crate owns the database schema, migrations, and provides a typed access
//! layer used by all other Shanty crates.