Cargo.toml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. harfbuzz_rs = { git = "https://github.com/narodnik/harfbuzz_rs.git", features = ["freetype"] }
  11. freetype-rs = { git = "https://github.com/narodnik/freetype-rs.git" }
  12. #harfbuzz_rs = "2.0.1"
  13. #freetype-rs = "0.36.0"
  14. freetype-sys = "0.20.1"
  15. image = "0.25.1"
  16. log = "0.4.21"
  17. glam = "0.27.0"
  18. zmq = "0.10.0"
  19. darkfi-serial = { path = "../../src/serial" }
  20. thiserror = "1.0.61"
  21. # Only for async Mutex
  22. smol = "2.0.0"
  23. atomic_float = "1.0.0"
  24. rustpython-vm = "0.3.1"
  25. #[patch."https://github.com/narodnik/harfbuzz_rs.git"]
  26. #freetype-rs = { path = "/tmp/freetype-rs/" }
  27. [patch.crates-io]
  28. freetype-rs = { git = "https://github.com/narodnik/freetype-rs.git" }
  29. [target.'cfg(target_os = "android")'.dependencies]
  30. android_logger = "0.13.3"
  31. [target.'cfg(target_os = "linux")'.dependencies]
  32. simplelog = "0.12.1"
  33. [package.metadata.android.activity_attributes]
  34. "android:exported" = "true"
  35. "android:windowSoftInputMode" = "adjustResize"