mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 14:44:12 +00:00
21 lines
625 B
TOML
21 lines
625 B
TOML
[package]
|
|
name = "dioxus-tailwind"
|
|
version = "0.0.0"
|
|
authors = []
|
|
edition = "2021"
|
|
description = "A tailwindcss example using Dioxus"
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/DioxusLabs/dioxus/"
|
|
homepage = "https://dioxuslabs.com"
|
|
documentation = "https://dioxuslabs.com"
|
|
rust-version = "1.60.0"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
manganis = { workspace = true }
|
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
|
dioxus = { path = "../../packages/dioxus", features = ["desktop"] }
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
dioxus = { path = "../../packages/dioxus", features = ["web"] }
|