Added the scaffolding
This commit is contained in:
10
shanty-db/Cargo.toml
Normal file
10
shanty-db/Cargo.toml
Normal file
@@ -0,0 +1,10 @@
|
||||
[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 }
|
||||
4
shanty-db/src/lib.rs
Normal file
4
shanty-db/src/lib.rs
Normal file
@@ -0,0 +1,4 @@
|
||||
//! 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.
|
||||
Reference in New Issue
Block a user