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
+13
View File
@@ -0,0 +1,13 @@
[package]
name = "rustfs-gui"
edition.workspace = true
license.workspace = true
repository.workspace = true
rust-version.workspace = true
version.workspace = true
[dependencies]
dioxus = { workspace = true, features = ["router"] }
[lints]
workspace = true