dioxus/packages/fullstack/examples/warp-hello-world/Cargo.toml

27 lines
711 B
TOML
Raw Normal View History

2023-03-31 14:40:58 +00:00
[package]
name = "warp-hello-world"
version = "0.1.0"
edition = "2021"
2023-04-03 18:09:34 +00:00
publish = false
2023-03-31 14:40:58 +00:00
# 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 }
2023-03-31 14:40:58 +00:00
serde = "1.0.159"
warp = { version = "0.3.3", optional = true }
execute = "0.2.12"
2023-07-18 00:23:15 +00:00
reqwest = "0.11.18"
simple_logger = "4.2.0"
2023-09-12 00:42:08 +00:00
tracing-wasm = "0.2.1"
tracing.workspace = true
tracing-subscriber = "0.3.17"
2023-03-31 14:40:58 +00:00
[features]
2023-06-24 01:23:03 +00:00
default = []
2023-05-02 15:15:34 +00:00
ssr = ["warp", "tokio", "dioxus-fullstack/warp"]
2023-03-31 14:40:58 +00:00
web = ["dioxus-web"]