mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-27 14:40:44 +00:00
21 lines
594 B
TOML
21 lines
594 B
TOML
[package]
|
|
name = "salvo-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"
|
|
salvo = { version = "0.37.9", optional = true }
|
|
execute = "0.2.12"
|
|
|
|
[features]
|
|
default = []
|
|
ssr = ["salvo", "tokio", "dioxus-fullstack/salvo"]
|
|
web = ["dioxus-web"]
|