27 lines
708 B
TOML
27 lines
708 B
TOML
[package]
|
|
name = "mhws-tex-decompressor"
|
|
version = "0.3.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
# # local development
|
|
# re-tex = { path = "../re-tex" }
|
|
# ree-pak-core = { path = "../../ree-pak-rs/ree-pak-core" }
|
|
|
|
re-tex = { git = "https://github.com/eigeen/re-tex.git", branch = "main" }
|
|
ree-pak-core = { git = "https://github.com/eigeen/ree-pak-rs.git", branch = "main" }
|
|
|
|
# UI
|
|
dialoguer = "0.12"
|
|
indicatif = "0.18"
|
|
colored = "3.0"
|
|
|
|
color-eyre = "0.6"
|
|
rayon = "1.11"
|
|
parking_lot = "0.12"
|
|
fs-err = "3.1"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
tokio = { version = "1.47", features = ["parking_lot", "rt-multi-thread", "macros"] }
|
|
reqwest = { version = "0.12", features = ["json"] }
|