mirror of
https://github.com/Bluemangoo/sekai-unpacker.git
synced 2026-05-06 20:44:47 +08:00
22 lines
596 B
TOML
22 lines
596 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 = {workspace = true}
|