1
0

Cargo.toml 967 B

123456789101112131415161718192021222324252627282930
  1. [package]
  2. name = "dioxus-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 = { workspace = true }
  22. htmlentity = "1.3.2"
  23. [dev-dependencies]
  24. pretty_assertions = { workspace = true }
  25. [package.metadata.docs.rs]
  26. cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples"]