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

23 lines
519 B
TOML
Raw Normal View History

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 = { workspace = true }
dioxus-fullstack = { workspace = true }
2023-03-30 10:34:13 -05:00
axum = { version = "0.6.12", optional = true }
serde = "1.0.159"
2023-07-07 19:03:25 -07:00
simple_logger = "4.2.0"
2023-07-17 16:48:54 -07:00
wasm-logger = "0.2.0"
log.workspace = true
2023-07-17 17:23:15 -07:00
reqwest = "0.11.18"
2023-03-30 10:34:13 -05:00
[features]
2023-06-23 18:23:03 -07:00
default = []
ssr = ["axum", "dioxus-fullstack/axum"]
web = ["dioxus-fullstack/web"]