52 lines
959 B
TOML
52 lines
959 B
TOML
[package]
|
|
name = "hardware_toolkit"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
iced = { git = "https://github.com/iced-rs/iced.git", features = [
|
|
"debug",
|
|
"advanced",
|
|
|
|
] }
|
|
tokio = { version = "1.45.1", features = ["full"] }
|
|
iced_aw = { git = "https://github.com/iced-rs/iced_aw.git", features = [
|
|
"badge",
|
|
"card",
|
|
"number_input",
|
|
"date_picker",
|
|
"color_picker",
|
|
"grid",
|
|
"tab_bar",
|
|
"tabs",
|
|
"time_picker",
|
|
"slide_bar",
|
|
"wrap",
|
|
"selection_list",
|
|
"quad",
|
|
"context_menu",
|
|
"spinner",
|
|
"drop_down",
|
|
"menu",
|
|
"sidebar",
|
|
"labeled_frame",
|
|
] }
|
|
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"
|
|
iced_fonts = { version = "0.2.1", features = ["full"] }
|