- 修改 DELETE 路由以接收 ID 参数 - 移除了冗余的 HTTP 请求示例文件 - 将 bill 包从主应用中解耦为库模块 - 更新 Cargo.toml 依赖关系以包含 bill 模块 - 升级多个工作区依赖版本 - 移除了已弃用的 docker-watcher 包及相关测试代码 - 修正数据库执行语句引用方式 - 添加 EntityTrait 引用以支持模型操作
15 lines
289 B
TOML
15 lines
289 B
TOML
[package]
|
|
name = "serv"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
tokio.workspace = true
|
|
gotify-ws.workspace = true
|
|
log.workspace = true
|
|
sea-orm.workspace = true
|
|
regex.workspace = true
|
|
actix-web.workspace = true
|
|
model.workspace = true
|
|
hutils.workspace = true
|
|
bill.workspace = true |