31 lines
613 B
TOML
31 lines
613 B
TOML
[package]
|
|
name = "mabel-hex"
|
|
version = "0.1.0"
|
|
authors = ["Ash Keel <ash@nebula.cafe>"]
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
dioxus = { version = "0.6", features = ["fullstack"] }
|
|
dioxus-cli-config = "0.6"
|
|
dioxus-logger = "0.6"
|
|
dotenvy = { version = "0.15", optional = true }
|
|
thiserror = "2.0.11"
|
|
tokio = { version = "1", features = ["full"], optional = true }
|
|
|
|
[features]
|
|
default = []
|
|
server = ["dioxus/server", "tokio", "dotenvy"]
|
|
web = ["dioxus/web"]
|
|
tokio = ["dep:tokio"]
|
|
|
|
[profile]
|
|
|
|
[profile.wasm-dev]
|
|
inherits = "dev"
|
|
opt-level = 1
|
|
|
|
[profile.server-dev]
|
|
inherits = "dev"
|
|
|
|
[profile.android-dev]
|
|
inherits = "dev"
|