Initial commit

This commit is contained in:
Amanda Graven 2025-02-10 09:34:10 +01:00
commit 560f88949f
10 changed files with 5623 additions and 0 deletions

30
Cargo.toml Normal file
View file

@ -0,0 +1,30 @@
[package]
name = "why5"
version = "0.1.0"
authors = ["Amanda Graven <amanda.graven@subaio.com>"]
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 = [] }
getrandom = { version = "0.2" }
rand = "0.8"
[features]
default = ["web"]
web = ["dioxus/web", "getrandom/js"]
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"