feat(persistence): add SqliteSongRepository and SqliteRepositoryFactory
This commit is contained in:
19
crates/infrastructure/persistence/Cargo.toml
Normal file
19
crates/infrastructure/persistence/Cargo.toml
Normal file
@@ -0,0 +1,19 @@
|
||||
[package]
|
||||
name = "persistence"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
|
||||
[dependencies]
|
||||
sqlx = { workspace = true }
|
||||
anyhow = { workspace = true }
|
||||
thiserror = { workspace = true }
|
||||
tokio = { workspace = true }
|
||||
tracing = { workspace = true }
|
||||
uuid = { workspace = true }
|
||||
rand = { workspace = true }
|
||||
async-trait = { workspace = true }
|
||||
|
||||
serde_json = { workspace = true }
|
||||
|
||||
domain = { path = "../../domain" }
|
||||
common = { path = "../../common" }
|
||||
Reference in New Issue
Block a user