Files
home-api/packages/bill/Cargo.toml
hz 144d13a1e9 feat(serv): 初始化数据库连接并集成SeaORM
- 添加 SeaORM 依赖并配置工作区共享
- 替换原有的 r2d2 数据库连接池实现
- 实现异步数据库初始化函数 init_database
- 在主函数中初始化数据库并注入应用上下文
- 移除旧的 sqlite 模块和相关路由配置文件
- 更新日志模块引用并增强环境变量打印测试
- 新增运行时信息打印工具模块 progress_running_info
- 调整模块结构,移除冗余的 router 模块定义
- 修正单元测试模块引用路径及内容适配新架构
2025-12-05 18:24:50 +08:00

13 lines
245 B
TOML

[package]
name = "bill"
version = "0.1.0"
edition = "2024"
[dependencies]
actix-web.workspace = true
serde.workspace = true
serde_json.workspace = true
tokio.workspace = true
hutils.workspace = true
log.workspace = true
sea-orm.workspace = true