2024-07-27 15:27:10 +00:00
|
|
|
[package]
|
2024-07-28 10:39:55 +01:00
|
|
|
name = "AvBag"
|
2024-07-27 15:27:10 +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]
|
2025-02-22 16:03:35 +00:00
|
|
|
egui = "0.31.0"
|
|
|
|
eframe = "0.31.0"
|
|
|
|
tracing-subscriber = "0.3.19"
|
|
|
|
strum = { version = "0.27.1", features = ["derive"] }
|
|
|
|
tokio = { version = "1.43.0", features = ["full"] }
|
|
|
|
tokio-macros = { version = "2.5.0" }
|
2025-02-21 14:13:26 +00:00
|
|
|
async-trait = "0.1.86"
|
|
|
|
futures = "0.3.31"
|
2025-02-21 14:46:46 +00:00
|
|
|
reqwest = "0.12.12"
|
2025-02-22 16:03:35 +00:00
|
|
|
serde_yaml = "0.9.34"
|
|
|
|
serde = {version = "1.0.218", features = ["derive"]}
|