[package] name = "website" version = "0.1.0" authors = ["Michał Czyż "] 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"