Cargo.toml 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. [package]
  2. name = "dioxus-router"
  3. version = "0.3.0"
  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. anyhow = "1.0.66"
  14. async-lock = "2.7.0"
  15. dioxus = { path="../dioxus" }
  16. dioxus-router-core = { path = "../router-core"}
  17. futures-channel = "0.3.25"
  18. futures-util = "0.3.25"
  19. log = "0.4.17"
  20. thiserror = "1.0.37"
  21. [features]
  22. regex = ["dioxus-router-core/regex"]
  23. serde = ["dioxus-router-core/serde"]
  24. wasm_test = []
  25. web = ["dioxus-router-core/web"]
  26. [dev-dependencies]
  27. dioxus = { path = "../dioxus" }
  28. dioxus-ssr = { path = "../ssr" }
  29. [target.'cfg(not(target_family = "wasm"))'.dev-dependencies]
  30. dioxus-desktop = { path = "../desktop" }
  31. [target.'cfg(target_family = "wasm")'.dev-dependencies]
  32. console_error_panic_hook = "0.1.7"
  33. dioxus-router = { path = ".", features = ["web"] }
  34. dioxus-web = { path= "../web" }
  35. gloo = "0.8.0"
  36. wasm-bindgen-test = "0.3.33"
  37. wasm-logger = "0.2.0"