Cargo.toml 572 B

123456789101112131415161718192021
  1. [package]
  2. name = "dioxus-mobile"
  3. version = { workspace = true }
  4. authors = ["Jonathan Kelley"]
  5. edition = "2021"
  6. description = "Mobile-compatible renderer for Dioxus"
  7. repository = "https://github.com/DioxusLabs/dioxus/"
  8. homepage = "https://dioxuslabs.com/learn/0.5/getting_started"
  9. keywords = ["dom", "ui", "gui", "react"]
  10. license = "MIT OR Apache-2.0"
  11. [dependencies]
  12. dioxus-desktop = { workspace = true }
  13. [lib]
  14. doctest = false
  15. # tests suspended until package ready
  16. test = false
  17. [package.metadata.docs.rs]
  18. cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples"]