2023-03-30 10:34:13 -05:00
|
|
|
[package]
|
2023-03-30 19:42:53 -05:00
|
|
|
name = "axum-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]
|
|
|
|
dioxus-web = { path = "../../../web", features=["hydrate"], optional = true }
|
|
|
|
dioxus = { path = "../../../dioxus" }
|
2023-05-02 10:15:34 -05:00
|
|
|
dioxus-fullstack = { path = "../../" }
|
2023-03-30 10:34:13 -05:00
|
|
|
axum = { version = "0.6.12", optional = true }
|
|
|
|
tokio = { version = "1.27.0", features = ["full"], optional = true }
|
|
|
|
serde = "1.0.159"
|
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 = ["axum", "tokio", "dioxus-fullstack/axum"]
|
2023-04-03 13:34:34 -05:00
|
|
|
web = ["dioxus-web"]
|