123456789101112131415161718192021 |
- [package]
- name = "axum-router"
- 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-router = { workspace = true }
- dioxus-fullstack = { workspace = true, features = ["router"] }
- axum = { version = "0.6.12", optional = true }
- tokio = {workspace = true, features = ["full"], optional = true }
- serde = { version = "1.0.159", features = ["derive"] }
- [features]
- default = []
- ssr = ["axum", "dioxus-fullstack/axum"]
- web = ["dioxus-fullstack/web", "dioxus-router/web"]
|