hardware_toolkit/Cargo.toml
z_lenovo 06549c35ab correct the update method to get the return type[Task<T>]
昨天用rustup更新了一下,不知道为什么连info都会提示我调了unsafe方法,要求我把它放进unsafe块中,日了狗,先记录一下再说吧
2025-06-28 19:54:11 +08:00

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"