Initialize rustfs-gui crate (#219)

- Set up the `rustfs-gui` package in the workspace.
- Add `dioxus` dependency with `router` feature.
- Configure workspace settings for edition, license, repository, and rust-version.
- Include lints configuration for the workspace.
This commit is contained in:
houseme
2025-02-17 17:54:57 +08:00
committed by GitHub
parent 0be26498d9
commit f8cc6f45b8
10 changed files with 1591 additions and 19 deletions
+3 -1
View File
@@ -12,6 +12,7 @@ members = [
"common/workers",
"iam",
"crypto",
"cli/rustfs-gui",
]
resolver = "2"
@@ -35,7 +36,8 @@ backon = "1.3.0"
bytes = "1.9.0"
bytesize = "1.3.0"
chrono = { version = "0.4.39", features = ["serde"] }
clap = { version = "4.5.27", features = ["derive","env"] }
clap = { version = "4.5.27", features = ["derive", "env"] }
dioxus = { version = "0.6.3", features = ["router"] }
ecstore = { path = "./ecstore" }
flatbuffers = "24.12.23"
futures = "0.3.31"