57 lines
1.1 KiB
TOML
57 lines
1.1 KiB
TOML
[package]
|
|
name = "hardware_toolkit"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
build = "build.rs"
|
|
|
|
[dependencies]
|
|
iced = { git = "https://github.com/iced-rs/iced.git", features = [
|
|
"debug",
|
|
"advanced",
|
|
"image",
|
|
"sipper",
|
|
"tokio",
|
|
] }
|
|
tokio = { version = "1.45.1", features = ["full"] }
|
|
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"] }
|
|
image = "0.25.6"
|
|
lazy_static = "1.5.0"
|
|
serde_json = "1.0.140"
|
|
serde = { version = "1.0.219", features = [
|
|
"alloc",
|
|
"rc",
|
|
"derive",
|
|
"serde_derive",
|
|
] }
|
|
rfd = { version = "0.15.3", features = ["tokio"] }
|
|
iced_futures = { version = "0.13.2", features = [
|
|
"async-std",
|
|
"smol",
|
|
"tokio",
|
|
"thread-pool",
|
|
] }
|
|
num_enum = "0.7.4"
|
|
trace = "0.1.7"
|
|
tracing = "0.1.41"
|
|
|
|
|
|
[build-dependencies]
|
|
embed-resource = "3.0.3"
|