feat: initial commit

This commit is contained in:
2025-03-19 08:52:09 +01:00
commit 4fd2d85c97
26 changed files with 6300 additions and 0 deletions

29
Cargo.toml Normal file
View File

@@ -0,0 +1,29 @@
[package]
name = "upcomming"
version = "0.1.0"
authors = ["Alex Wellnitz <moin@wellnitz-alex.de>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
dioxus = { version = "0.6.0", features = ["router", "fullstack"] }
reqwest = { version = "0.12.15" }
[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"