Cargo.toml 626 B

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