why5/Cargo.toml
2025-12-11 20:34:58 +01:00

30 lines
569 B
TOML

[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.7.2", features = [] }
getrandom = "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"