27 lines
578 B
TOML
27 lines
578 B
TOML
[package]
|
|
name = "hardware_toolkit"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
tokio = { version = "1.45.1", features = ["full"] }
|
|
iced = { git = "https://github.com/iced-rs/iced.git" }
|
|
iced_aw = { git = "https://github.com/iced-rs/iced_aw.git" }
|
|
reqwest = "0.12.20"
|
|
tracing-subscriber = { version = "0.3.19", features = [
|
|
"chrono",
|
|
"env-filter",
|
|
"json",
|
|
"once_cell",
|
|
"regex",
|
|
"serde",
|
|
"serde_json",
|
|
"time",
|
|
"tracing",
|
|
] }
|
|
utfx = "0.1.0"
|
|
registry = "1.3.0"
|
|
anyhow = { version = "1.0.98", features = ["backtrace"] }
|
|
log = "0.4.27"
|
|
env_logger = "0.11.8"
|