Cargo.toml 896 B

123456789101112131415161718192021222324252627282930
  1. [package]
  2. name = "dioxus-autofmt"
  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. keywords = ["dom", "ui", "gui", "react"]
  11. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  12. [dependencies]
  13. dioxus-rsx = { workspace = true }
  14. proc-macro2 = { version = "1.0.6", features = ["span-locations"] }
  15. quote = { workspace = true }
  16. syn = { workspace = true, features = [
  17. "full",
  18. "extra-traits",
  19. "visit",
  20. "visit-mut",
  21. ] }
  22. serde = { version = "1.0.136", features = ["derive"] }
  23. prettyplease = { workspace = true }
  24. [dev-dependencies]
  25. pretty_assertions = "1.2.1"
  26. [package.metadata.docs.rs]
  27. cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples"]