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

22 lines
595 B
TOML
Raw Normal View History

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