mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-27 22:50:19 +00:00
26 lines
711 B
TOML
26 lines
711 B
TOML
[package]
|
|
name = "warp-hello-world"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
dioxus-web = { workspace = true, features=["hydrate"], optional = true }
|
|
dioxus = { workspace = true }
|
|
dioxus-fullstack = { workspace = true }
|
|
tokio = { workspace = true, features = ["full"], optional = true }
|
|
serde = "1.0.159"
|
|
warp = { version = "0.3.3", optional = true }
|
|
execute = "0.2.12"
|
|
reqwest = "0.11.18"
|
|
simple_logger = "4.2.0"
|
|
tracing-wasm = "0.2.1"
|
|
tracing.workspace = true
|
|
tracing-subscriber = "0.3.17"
|
|
|
|
[features]
|
|
default = []
|
|
ssr = ["warp", "tokio", "dioxus-fullstack/warp"]
|
|
web = ["dioxus-web"]
|