Cargo.toml 720 B

1234567891011121314151617181920212223242526272829
  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. dioxus-lib = { workspace = true }
  14. jni = "0.21.1"
  15. libc = "0.2.159"
  16. once_cell.workspace = true
  17. [features]
  18. default = ["jnibindings"]
  19. jnibindings = []
  20. [lib]
  21. doctest = false
  22. # tests suspended until package ready
  23. test = false
  24. [package.metadata.docs.rs]
  25. cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples"]