mirror of
https://github.com/eRgo35/website.git
synced 2026-02-04 05:26:11 +01:00
35 lines
821 B
TOML
35 lines
821 B
TOML
[package]
|
|
name = "website"
|
|
version = "0.1.0"
|
|
authors = ["Michał Czyż <mike@c2yz.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 = ["router", "fullstack"] }
|
|
dioxus-material-icons = "3.0.0"
|
|
dioxus-motion = { version = "0.3.1", optional = true, default-features = false }
|
|
|
|
[features]
|
|
default = ["web"]
|
|
web = ["dioxus/web", "dioxus-motion/web", "dioxus-motion/transitions"]
|
|
desktop = [
|
|
"dioxus/desktop",
|
|
"dioxus-motion/desktop",
|
|
"dioxus-motion/transitions",
|
|
]
|
|
mobile = ["dioxus/mobile", "dioxus-motion/desktop", "dioxus-motion/transitions"]
|
|
|
|
[profile]
|
|
|
|
[profile.wasm-dev]
|
|
inherits = "dev"
|
|
opt-level = 1
|
|
|
|
[profile.server-dev]
|
|
inherits = "dev"
|
|
|
|
[profile.android-dev]
|
|
inherits = "dev"
|