Cargo.toml 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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. dioxus = { path="../dioxus" }
  15. dioxus-router-macro = { path="../router-macro" }
  16. log = "0.4.17"
  17. serde = { version = "1.0.163", features = ["derive"] }
  18. thiserror = "1.0.37"
  19. url = "2.3.1"
  20. [features]
  21. wasm_test = []
  22. web = []
  23. [dev-dependencies]
  24. dioxus = { path = "../dioxus" }
  25. dioxus-ssr = { path = "../ssr" }
  26. [target.'cfg(not(target_family = "wasm"))'.dev-dependencies]
  27. dioxus-desktop = { path = "../desktop" }
  28. [target.'cfg(target_family = "wasm")'.dev-dependencies]
  29. console_error_panic_hook = "0.1.7"
  30. dioxus-router = { path = ".", features = ["web"] }
  31. dioxus-web = { path= "../web" }
  32. gloo = "0.8.0"
  33. wasm-bindgen-test = "0.3.33"
  34. wasm-logger = "0.2.0"