Files
YANPM/public/database/Cargo.toml
GW_MC f4e6eb56c8
All checks were successful
Test / verify-generated-code (pull_request) Successful in 7m57s
Test / test (pull_request) Successful in 1m9s
Test / lint (pull_request) Successful in 1m9s
Update sea-orm dependencies to use workspace configuration; add dead code annotations in service error handling and settings service
2025-12-02 17:12:24 +08:00

21 lines
623 B
TOML

[package]
name = "database"
version = "0.1.0"
edition = "2024"
[lib]
path = "src/lib.rs"
[dependencies]
shared = { path = "../shared" }
migration = { path = "../migration" }
chrono = { version = "0.4", features = ["serde"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.47.0", features = ["full"] }
sea-orm = { workspace = true, features = [ "sqlx-postgres", "sqlx-mysql", "sqlx-sqlite", "runtime-tokio-rustls", "macros", "mock", "with-chrono", "with-json", "with-uuid", "sqlite-use-returning-for-3_35", "mariadb-use-returning" ] }
log = "0.4.28"
[lints]
workspace = true