Cargo.toml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. async-channel = "2.3.1"
  29. easy-parallel = "3.3.1"
  30. crossbeam-skiplist = "0.1"
  31. rand = "0.8.5"
  32. #rustpython-vm = "0.3.1"
  33. #[patch."https://github.com/narodnik/harfbuzz_rs.git"]
  34. #freetype-rs = { path = "/tmp/freetype-rs/" }
  35. [patch.crates-io]
  36. freetype-rs = { git = "https://github.com/narodnik/freetype-rs.git" }
  37. [target.'cfg(target_os = "android")'.dependencies]
  38. android_logger = "0.13.3"
  39. [target.'cfg(target_os = "linux")'.dependencies]
  40. simplelog = "0.12.1"
  41. [package.metadata.android.activity_attributes]
  42. "android:exported" = "true"
  43. "android:windowSoftInputMode" = "adjustResize"
  44. [lints]
  45. workspace = true
  46. [workspace.lints.clippy]