Cargo.toml 778 B

1234567891011121314151617181920212223242526272829303132333435
  1. [package]
  2. name = "darkwallet"
  3. version = "0.1.0"
  4. edition = "2021"
  5. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  6. [workspace]
  7. [dependencies]
  8. #miniquad = "0.4.0-alpha"
  9. miniquad = { git = "https://github.com/not-fl3/miniquad" }
  10. fontdue = "0.7"
  11. image = "0.24"
  12. log = "0.4.19"
  13. glam = "0.27.0"
  14. zmq = "0.10.0"
  15. darkfi-serial = { path = "../../src/serial" }
  16. thiserror = "1.0.57"
  17. # Only for async Mutex
  18. smol = "1.3.0"
  19. atomic_float = "0.1.0"
  20. rustpython-vm = "0.3.1"
  21. [target.'cfg(target_os = "android")'.dependencies]
  22. android_logger = "0.13"
  23. [target.'cfg(target_os = "linux")'.dependencies]
  24. simplelog = "0.12.1"
  25. [package.metadata.android.activity_attributes]
  26. "android:exported" = "true"
  27. "android:windowSoftInputMode" = "adjustResize"