Cargo.toml 1.4 KB

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