1
0

Cargo.toml 701 B

12345678910111213141516171819202122232425
  1. [package]
  2. name = "dioxus-mobile"
  3. version = "0.0.0"
  4. authors = ["Jonathan Kelley"]
  5. edition = "2018"
  6. repository = "https://github.com/DioxusLabs/dioxus/"
  7. homepage = "https://dioxuslabs.com"
  8. documentation = "https://dioxuslabs.com"
  9. keywords = ["dom", "ui", "gui", "react", "wasm"]
  10. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  11. [dependencies]
  12. anyhow = "1.0"
  13. # cacao = { git = "https://github.com/ryanmcgrath/cacao" }
  14. dioxus-core = { path = "../core", version = "^0.1.3" }
  15. log = "0.4.14"
  16. serde = "1.0.126"
  17. serde_json = "1.0.64"
  18. wry = "0.12.2"
  19. [target.'cfg(target_os = "android")'.dependencies]
  20. android_logger = "0.9.0"
  21. log = "0.4.11"
  22. ndk-glue = "0.2.1"