mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-27 14:40:44 +00:00
21 lines
602 B
TOML
21 lines
602 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]
|
||
|
dioxus = { path = "../../packages/dioxus" }
|
||
|
|
||
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
||
|
dioxus-desktop = { path = "../../packages/desktop" }
|
||
|
|
||
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
||
|
dioxus-web = { path = "../../packages/web" }
|