30 lines
583 B
TOML
30 lines
583 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.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"
|