2024-04-18 21:19:11 +00:00
|
|
|
[package]
|
2024-04-22 16:14:48 +00:00
|
|
|
name = "mcmg"
|
2024-04-18 21:19:11 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
anstyle = "1.0.6"
|
|
|
|
anyhow = "1.0.81"
|
|
|
|
camino = "1.1.6"
|
|
|
|
clap = { version = "4.5.4", features = ["derive"] }
|
2024-04-22 16:14:48 +00:00
|
|
|
eframe = "0.27.2"
|
|
|
|
egui = "0.27.2"
|
2024-09-14 13:50:07 +00:00
|
|
|
egui_extras = "0.27.2"
|
2024-04-18 21:19:11 +00:00
|
|
|
env_logger = "0.11.3"
|
2024-09-14 13:50:07 +00:00
|
|
|
futures = "0.3.30"
|
2024-04-18 21:19:11 +00:00
|
|
|
lazy_static = "1.4.0"
|
|
|
|
libc = "0.2.153"
|
|
|
|
log = "0.4.21"
|
2024-09-16 21:06:53 +00:00
|
|
|
notify-rust = "4.11.3"
|
|
|
|
open = "5.3.0"
|
2024-09-19 15:09:47 +00:00
|
|
|
reqwest = { version = "0.12.3", features = ["h2", "http2", "rustls-tls"], default-features = false }
|
2024-04-18 21:19:11 +00:00
|
|
|
serde = { version = "1.0.197", features = ["derive"] }
|
|
|
|
serde_json = "1.0.115"
|
|
|
|
# serde_traitobject = "0.2.8"
|
|
|
|
tokio = { version = "1.37.0", features = ["macros", "rt-multi-thread", "process", "sync"] }
|
|
|
|
url = "2.5.0"
|
|
|
|
windows = { version = "0.56.0", features = ["Win32_Foundation", "Win32_Storage_FileSystem", "Win32_System_Console"] }
|
|
|
|
zip-extensions = "0.6.2"
|