1
0
mirror of https://github.com/Bluemangoo/sekai-unpacker.git synced 2026-05-06 20:44:47 +08:00
sekai-unpacker/client/Cargo.toml
2026-04-10 15:23:22 +08:00

22 lines
586 B
TOML

[package]
name = "client"
version = "0.1.0"
edition = "2024"
[dependencies]
common = { path = "../common" }
communicator = { path = "../communicator" }
bytes = { workspace = true }
serde = { workspace = true, features = ["derive"] }
tokio = { workspace = true, features = ["rt", "rt-multi-thread", "macros"] }
structopt = { workspace = true }
lazy_static = { workspace = true }
yaml_serde = { workspace = true }
log = { workspace = true }
simplelog = { workspace = true }
anyhow = { workspace = true }
h2 = { workspace = true }
serde_json = { workspace = true }
tokio-util = "0.7.18"