mirror of
https://github.com/rustfs/rustfs.git
synced 2026-08-07 22:03:14 +00:00
9b77084ffe
1. Added a new build process `build-rustfs-gui` in `build.yaml` to streamline the build operations for the RustFS GUI. 2. Optimized `cli/rustfs-gui/utils/helper.rs` by using `rust-embed` to embed the `rustfs` resources directly into the binary.
35 lines
971 B
TOML
35 lines
971 B
TOML
[package]
|
|
name = "rustfs-gui"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
rust-version.workspace = true
|
|
version.workspace = true
|
|
|
|
[dependencies]
|
|
chrono = { workspace = true }
|
|
dioxus = { workspace = true, features = ["router"] }
|
|
dirs = { workspace = true }
|
|
futures-util = { workspace = true }
|
|
hex = { workspace = true }
|
|
keyring = { workspace = true }
|
|
reqwest = { workspace = true }
|
|
rfd = { workspace = true }
|
|
rust-embed = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
sha2 = { workspace = true }
|
|
tokio = { workspace = true, features = ["io-util", "net", "process", "sync"] }
|
|
tracing-subscriber = { workspace = true, features = ["fmt", "env-filter", "tracing-log", "time", "local-time", "json"] }
|
|
tracing-appender = { workspace = true }
|
|
zip = { workspace = true }
|
|
|
|
[features]
|
|
default = ["desktop"]
|
|
web = ["dioxus/web"]
|
|
desktop = ["dioxus/desktop"]
|
|
mobile = ["dioxus/mobile"]
|
|
|
|
[lints]
|
|
workspace = true
|