Cargo.toml 654 B

123456789101112131415161718192021
  1. [package]
  2. name = "dioxus-playwrite-fullstack-test"
  3. version = "0.1.0"
  4. edition = "2021"
  5. publish = false
  6. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  7. [dependencies]
  8. dioxus-web = { path = "../../packages/web", features=["hydrate"], optional = true }
  9. dioxus = { path = "../../packages/dioxus" }
  10. dioxus-fullstack = { path = "../../packages/fullstack" }
  11. axum = { version = "0.6.12", optional = true }
  12. tokio = { version = "1.27.0", features = ["full"], optional = true }
  13. serde = "1.0.159"
  14. execute = "0.2.12"
  15. [features]
  16. default = ["web"]
  17. ssr = ["axum", "tokio", "dioxus-fullstack/axum"]
  18. web = ["dioxus-web"]