Cargo.toml 889 B

12345678910111213141516171819202122232425262728293031
  1. [package]
  2. name = "rsx-rosetta"
  3. version = { workspace = true }
  4. edition = "2021"
  5. authors = ["Jonathan Kelley"]
  6. description = "Autofomatter for Dioxus RSX"
  7. license = "MIT OR 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 = { workspace = true }
  15. dioxus-rsx = { workspace = true }
  16. dioxus-html = { workspace = true, features = ["html-to-rsx"]}
  17. html_parser = { workspace = true }
  18. proc-macro2 = { workspace = true }
  19. quote = { workspace = true }
  20. syn = { workspace = true, features = ["full"] }
  21. convert_case = "0.5.0"
  22. # [features]
  23. # default = ["html"]
  24. # eventually more output options
  25. [dev-dependencies]
  26. pretty_assertions = "1.2.1"