2023-03-30 10:34:13 -05:00
|
|
|
[package]
|
2023-03-30 19:42:53 -05:00
|
|
|
name = "salvo-hello-world"
|
2023-03-30 10:34:13 -05:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2023-04-03 13:09:34 -05:00
|
|
|
publish = false
|
2023-03-30 10:34:13 -05:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2023-06-28 08:56:07 -07:00
|
|
|
dioxus-web = { workspace = true, features=["hydrate"], optional = true }
|
|
|
|
dioxus = { workspace = true }
|
|
|
|
dioxus-fullstack = { workspace = true }
|
|
|
|
tokio = { workspace = true, features = ["full"], optional = true }
|
2023-03-30 10:34:13 -05:00
|
|
|
serde = "1.0.159"
|
2023-03-30 19:42:53 -05:00
|
|
|
salvo = { version = "0.37.9", optional = true }
|
2023-05-01 17:34:30 -05:00
|
|
|
execute = "0.2.12"
|
2023-03-30 10:34:13 -05:00
|
|
|
|
|
|
|
[features]
|
2023-06-23 18:23:03 -07:00
|
|
|
default = []
|
2023-05-02 10:15:34 -05:00
|
|
|
ssr = ["salvo", "tokio", "dioxus-fullstack/salvo"]
|
2023-03-30 10:34:13 -05:00
|
|
|
web = ["dioxus-web"]
|