1
0

Cargo.toml 818 B

123456789101112131415161718192021222324252627282930
  1. [package]
  2. name = "rsx-rosetta"
  3. version = "0.3.0"
  4. edition = "2021"
  5. authors = ["Jonathan Kelley"]
  6. description = "Autofomatter for Dioxus RSX"
  7. license = "MIT/Apache-2.0"
  8. repository = "https://github.com/DioxusLabs/dioxus/"
  9. homepage = "https://dioxuslabs.com"
  10. documentation = "https://dioxuslabs.com"
  11. keywords = ["dom", "ui", "gui", "react"]
  12. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  13. [dependencies]
  14. dioxus-autofmt = { path = "../autofmt", version = "0.3.0" }
  15. dioxus-rsx = { path = "../rsx" , version = "^0.0.3" }
  16. html_parser = "0.6.3"
  17. proc-macro2 = "1.0.49"
  18. quote = "1.0.23"
  19. syn = { version = "1.0.107", features = ["full"] }
  20. convert_case = "0.5.0"
  21. # [features]
  22. # default = ["html"]
  23. # eventually more output options
  24. [dev-dependencies]
  25. pretty_assertions = "1.2.1"