Cargo.toml 479 B

123456789101112131415161718
  1. [package]
  2. name = "dioxus-rsx-interpreter"
  3. version = "0.1.0"
  4. edition = "2021"
  5. license = "MIT/Apache-2.0"
  6. [dependencies]
  7. syn = { version = "1.0", features = ["extra-traits"] }
  8. quote = "1.0"
  9. serde = { version = "1.0", features = ["derive"] }
  10. serde_json = "1.0"
  11. lazy_static = "1.4.0"
  12. dioxus-rsx = { path = "../rsx", default-features = false }
  13. dioxus-ssr = { path = "../ssr" }
  14. dioxus-core = { path = "../core" }
  15. dioxus-html = { path = "../html" }
  16. dioxus-hooks = { path = "../hooks"}