Cargo.toml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. #async_zmq = "0.4.0"
  23. zeromq = { version = "*", default-features = false, features = ["async-std-runtime", "all-transport"] }
  24. #darkfi-serial = { path = "../../src/serial" }
  25. darkfi-serial = { git = "https://codeberg.org/darkrenaissance/darkfi.git" }
  26. thiserror = "1.0.61"
  27. # Only for async Mutex
  28. smol = "2.0.0"
  29. atomic_float = "1.0.0"
  30. async-channel = "2.3.1"
  31. easy-parallel = "3.3.1"
  32. rand = "0.8.5"
  33. async-lock = "3.4.0"
  34. futures = "0.3.30"
  35. #rustpython-vm = "0.3.1"
  36. #[patch."https://github.com/narodnik/harfbuzz_rs.git"]
  37. #freetype-rs = { path = "/tmp/freetype-rs/" }
  38. [patch.crates-io]
  39. freetype-rs = { git = "https://github.com/narodnik/freetype-rs.git" }
  40. [target.'cfg(target_os = "android")'.dependencies]
  41. android_logger = "0.13.3"
  42. [target.'cfg(target_os = "linux")'.dependencies]
  43. simplelog = "0.12.1"
  44. [package.metadata.android.activity_attributes]
  45. "android:exported" = "true"
  46. "android:windowSoftInputMode" = "adjustResize"
  47. [lints]
  48. workspace = true
  49. [workspace.lints.clippy]