mirror of
https://github.com/Yuyi-Oak/BlueArchiveToolkit.git
synced 2026-07-22 00:55:15 +08:00
33 lines
774 B
TOML
33 lines
774 B
TOML
[package]
|
|
name = "bat-infrastructure"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
|
|
[[bin]]
|
|
name = "bat"
|
|
path = "src/bin/bat_official_sync.rs"
|
|
|
|
[dependencies]
|
|
bat-core = { path = "../core" }
|
|
bat-adapters = { path = "../adapters" }
|
|
bat-cas-engine = { path = "../crates/bat-cas-engine" }
|
|
anyhow.workspace = true
|
|
thiserror.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
blake3.workspace = true
|
|
tokio.workspace = true
|
|
async-trait.workspace = true
|
|
md-5 = "0.10"
|
|
hex = "0.4"
|
|
tempfile = "3.14"
|
|
libc = "0.2"
|
|
sqlx = { version = "0.8", features = ["runtime-tokio", "sqlite"] }
|
|
|
|
[dev-dependencies]
|
|
tokio = { workspace = true, features = ["test-util", "macros"] }
|
|
tempfile = "3.14"
|
|
serde_json.workspace = true
|