Files
db/Cargo.toml
Connor Johnstone 305ddff278 Initial commit
2026-03-17 14:14:46 -04:00

21 lines
709 B
TOML

[package]
name = "shanty-db"
version = "0.1.0"
edition = "2024"
license = "MIT"
description = "Shared database schema and access layer for Shanty"
repository = "ssh://connor@git.rcjohnstone.com:2222/Shanty/db.git"
[dependencies]
sea-orm = { version = "1", features = ["sqlx-sqlite", "runtime-tokio-native-tls", "macros", "with-chrono"] }
sea-orm-migration = { version = "1", features = ["sqlx-sqlite", "runtime-tokio-native-tls"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
chrono = { version = "0.4", features = ["serde"] }
thiserror = "2"
tracing = "0.1"
tokio = { version = "1", features = ["full"] }
[dev-dependencies]
tokio = { version = "1", features = ["full", "test-util"] }