34 lines
723 B
TOML
Executable File
34 lines
723 B
TOML
Executable File
[package]
|
|
name = "aw-mod-installer"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
lazy_static = "1.4"
|
|
anyhow = "1.0"
|
|
thiserror = "1.0"
|
|
log = "0.4"
|
|
env_logger = "0.9"
|
|
|
|
tokio = { version = "1", features = ["fs","macros"] }
|
|
|
|
# utils
|
|
regex = "1"
|
|
dotenv = "0.15"
|
|
dirs-next = "2"
|
|
strum = { version = "0.24", features = ["derive"] }
|
|
|
|
# file and net
|
|
reqwest = { version = "0.11", features = ["json"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
scraper = "0.13"
|
|
zip = "0.6"
|
|
sevenz-rust = "0.1"
|
|
|
|
# ui
|
|
iced = {git ="https://github.com/iced-rs/iced", features =["tokio"]}
|
|
native-dialog = "0.6"
|
|
open = "3" |