Cargo.toml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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 = { git = "https://github.com/not-fl3/miniquad" }
  9. # Currently latest version links to freetype-sys 0.19 but we use 0.21
  10. #harfbuzz-sys = "0.6.1"
  11. #harfbuzz-sys = { git = "https://github.com/servo/rust-harfbuzz", features = ["bundled"] }
  12. harfbuzz-sys = { git = "https://github.com/narodnik/rust-harfbuzz", features = ["bundled"] }
  13. # Old and crap
  14. #harfbuzz_rs = { git = "https://github.com/narodnik/hbrs2.git", features = ["freetype"] }
  15. freetype-rs = { version = "0.37.0", features = ["bundled"] }
  16. image = "0.25.2"
  17. log = "0.4.22"
  18. glam = "0.28.0"
  19. #zmq = "0.10.0"
  20. #async_zmq = "0.4.0"
  21. zeromq = { version = "0.4.0", default-features = false, features = ["async-std-runtime", "all-transport"] }
  22. darkfi-serial = { git = "https://codeberg.org/darkrenaissance/darkfi" }
  23. darkfi = { git = "https://codeberg.org/darkrenaissance/darkfi", features = ["system"] }
  24. thiserror = "1.0.61"
  25. smol = "2.0.0"
  26. atomic_float = "1.0.0"
  27. async-channel = "2.3.1"
  28. easy-parallel = "3.3.1"
  29. rand = "0.8.5"
  30. async-lock = "3.4.0"
  31. futures = "0.3.30"
  32. async-recursion = "1.1.1"
  33. colored = "2.1.0"
  34. #rustpython-vm = "0.3.1"
  35. sled = "0.34.7"
  36. [patch.crates-io]
  37. freetype-rs = { git = "https://github.com/narodnik/freetype-rs" }
  38. freetype-sys = { git = "https://github.com/narodnik/freetype-sys" }
  39. [target.'cfg(target_os = "android")'.dependencies]
  40. android_logger = "0.13.3"
  41. [target.'cfg(target_os = "linux")'.dependencies]
  42. simplelog = "0.12.1"
  43. [package.metadata.android.activity_attributes]
  44. "android:exported" = "true"
  45. "android:windowSoftInputMode" = "adjustResize"
  46. [lints]
  47. workspace = true
  48. [workspace.lints.clippy]
  49. [package.metadata.android]
  50. package_name = "darkfi.darkwallet"
  51. label = "DarkWallet"
  52. res = "res"
  53. icon = "@mipmap/ic_launcher"
  54. assets = "assets"
  55. [[package.metadata.android.permission]]
  56. name = "android.permission.INTERNET"
  57. [[package.metadata.android.permission]]
  58. name = "android.permission.ACCESS_NETWORK_STATE"