mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-12-18 16:43:21 +00:00
19 lines
570 B
TOML
19 lines
570 B
TOML
|
[package]
|
||
|
name = "warp-hello-world"
|
||
|
version = "0.1.0"
|
||
|
edition = "2021"
|
||
|
|
||
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||
|
|
||
|
[dependencies]
|
||
|
dioxus-web = { path = "../../../web", features=["hydrate"], optional = true }
|
||
|
dioxus = { path = "../../../dioxus" }
|
||
|
dioxus-server = { path = "../../" }
|
||
|
tokio = { version = "1.27.0", features = ["full"], optional = true }
|
||
|
serde = "1.0.159"
|
||
|
warp = { version = "0.3.3", optional = true }
|
||
|
|
||
|
[features]
|
||
|
ssr = ["warp", "tokio", "dioxus-server/ssr", "dioxus-server/warp"]
|
||
|
web = ["dioxus-web"]
|