Cargo.toml 706 B

12345678910111213141516171819202122232425
  1. [package]
  2. name = "dioxus-router"
  3. version = "0.2.3"
  4. edition = "2018"
  5. description = "Cross-platform router for Dioxus apps"
  6. license = "MIT/Apache-2.0"
  7. repository = "https://github.com/DioxusLabs/dioxus/"
  8. homepage = "https://dioxuslabs.com"
  9. documentation = "https://dioxuslabs.com"
  10. keywords = ["dom", "ui", "gui", "react", "wasm"]
  11. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  12. [dependencies]
  13. async-rwlock = "1.3.0"
  14. dioxus = { path="../dioxus" }
  15. dioxus-router-core = { path = "../router-core"}
  16. futures-channel = "0.3.25"
  17. futures-util = "0.3.25"
  18. log = "0.4.17"
  19. # for wasm
  20. [features]
  21. regex = ["dioxus-router-core/regex"]
  22. serde = ["dioxus-router-core/serde"]