mirror of
https://github.com/Yuyi-Oak/BlueArchiveToolkit.git
synced 2026-07-21 22:11:26 +08:00
Add the production-facing official update service and bat-official-sync watch CLI for unattended resource synchronization. Support launcher-resource discovery without installing the launcher, remote marker snapshots, local manifest audit and repair, official seed hash validation, bootstrap caching, richer Addressables coverage, SQLite resource persistence, and FFI JSON helpers.
29 lines
622 B
TOML
29 lines
622 B
TOML
[package]
|
|
name = "bat-ffi"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "staticlib"]
|
|
|
|
[dependencies]
|
|
bat-core = { path = "../../core" }
|
|
bat-adapters = { path = "../../adapters" }
|
|
bat-infrastructure = { path = "../../infrastructure" }
|
|
bat-cas-engine = { path = "../bat-cas-engine" }
|
|
bat-assetbundle = { path = "../bat-assetbundle" }
|
|
bat-patch = { path = "../bat-patch" }
|
|
|
|
anyhow.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
tokio.workspace = true
|
|
|
|
# FFI 绑定
|
|
libc = "0.2"
|
|
|
|
[build-dependencies]
|
|
cbindgen = "0.27"
|