Cargo.toml 878 B

123456789101112131415161718192021222324252627282930313233343536373839
  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 = [
  10. "dom",
  11. "ui",
  12. "userinterface",
  13. "gui",
  14. "react",
  15. "state",
  16. "management",
  17. "wasm",
  18. "web",
  19. "ssr",
  20. ]
  21. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  22. [dependencies]
  23. anyhow = "1.0"
  24. # cacao = { git = "https://github.com/ryanmcgrath/cacao" }
  25. dioxus-core = { path = "../core", version ="^0.1.3"}
  26. log = "0.4.14"
  27. serde = "1.0.126"
  28. serde_json = "1.0.64"
  29. wry = "0.12.2"
  30. [target.'cfg(target_os = "android")'.dependencies]
  31. android_logger = "0.9.0"
  32. log = "0.4.11"
  33. ndk-glue = "0.2.1"
  34. [target.'cfg(not(target_os = "android"))'.dependencies]
  35. simple_logger = "1.11.0"