mirror of
https://github.com/Yuyi-Oak/BlueArchiveToolkit.git
synced 2026-07-21 17:16:44 +08:00
自 0.1.0(项目初始化)以来的 73 个提交构成首个功能版本: CAS V1、官方资源同步闭环(auto-discover/原子发布/断点续传/校验/ quarantine)、watch/daemon 常驻与控制面、Resource Backend RPC API (envelope + BAT-ERR 错误码模型 + daemon/resource/catalog/task 命名 空间)、任务历史持久化与 .env 无参启动。 CHANGELOG:未发布内容整理为 [0.2.0] - 2026-07-17,补录 RPC API/ 错误码/任务持久化/.env 条目与 7 月修复项;计划清单移至未发布节。 Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
41 lines
806 B
TOML
41 lines
806 B
TOML
[workspace]
|
|
resolver = "2"
|
|
members = [
|
|
"core",
|
|
"adapters",
|
|
"infrastructure",
|
|
"crates/bat-assetbundle",
|
|
"crates/bat-cas-engine",
|
|
"crates/bat-ffi",
|
|
"crates/bat-patch",
|
|
]
|
|
|
|
[workspace.package]
|
|
version = "0.2.0"
|
|
edition = "2021"
|
|
authors = ["BlueArchive Toolkit Team"]
|
|
license = "MIT"
|
|
|
|
[workspace.dependencies]
|
|
# 共享依赖版本管理(2026-06-27 最新稳定版本)
|
|
tokio = { version = "1.52", features = ["full"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
anyhow = "1.0"
|
|
thiserror = "2.0"
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
|
|
blake3 = "1.8"
|
|
rayon = "1.12"
|
|
async-trait = "0.1"
|
|
|
|
[profile.release]
|
|
opt-level = 3
|
|
lto = true
|
|
codegen-units = 1
|
|
strip = true
|
|
|
|
[profile.dev]
|
|
opt-level = 0
|
|
debug = true
|