[refactor] Remove UI components and associated assets

This commit is contained in:
2025-08-21 18:19:39 +02:00
parent ffbf5e6aa3
commit 68311051ba
47 changed files with 348 additions and 1432 deletions

View File

@@ -1,16 +1,28 @@
[workspace]
resolver = "2"
members = [
"ui",
"web",
"desktop",
"mobile",
"api",
]
[package]
name = "tester"
version = "0.1.0"
authors = ["vikingowl <christian@nachtigall.dev>"]
edition = "2021"
[workspace.dependencies]
dioxus = { version = "0.6.0" }
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
# workspace
ui = { path = "ui" }
api = { path = "api" }
[dependencies]
dioxus = { version = "0.6.0", features = ["router", "fullstack"] }
[features]
default = ["web"]
web = ["dioxus/web"]
desktop = ["dioxus/desktop"]
mobile = ["dioxus/mobile"]
[profile]
[profile.wasm-dev]
inherits = "dev"
opt-level = 1
[profile.server-dev]
inherits = "dev"
[profile.android-dev]
inherits = "dev"