Cargo.toml 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. [package]
  2. name = "drk"
  3. version = "0.5.0"
  4. homepage = "https://dark.fi"
  5. description = "Command-line client for darkfid"
  6. authors = ["Dyne.org foundation <foundation@dyne.org>"]
  7. repository = "https://codeberg.org/darkrenaissance/darkfi"
  8. license = "AGPL-3.0-only"
  9. edition = "2021"
  10. [lib]
  11. path = "src/lib.rs"
  12. crate-type = ["cdylib", "rlib"]
  13. [dependencies]
  14. # Darkfi
  15. darkfi = {path = "../../", features = ["async-daemonize", "bs58", "rpc"]}
  16. darkfi_money_contract = {path = "../../src/contract/money", features = ["no-entrypoint", "client"]}
  17. darkfi_dao_contract = {path = "../../src/contract/dao", features = ["no-entrypoint", "client"]}
  18. darkfi_deployooor_contract = {path = "../../src/contract/deployooor", features = ["no-entrypoint", "client"]}
  19. darkfi-sdk = {path = "../../src/sdk", features = ["async"]}
  20. darkfi-serial = {path = "../../src/serial"}
  21. # Misc
  22. blake3 = "1.8.5"
  23. bs58 = "0.5.1"
  24. futures = "0.3.32"
  25. lazy_static = "1.5.0"
  26. libc = "0.2"
  27. linenoise-rs = "0.1.1"
  28. num-bigint = "0.4.6"
  29. prettytable-rs = "0.10.0"
  30. rand = "0.8.6"
  31. rodio = {version = "0.21.1", default-features = false, features = ["playback", "mp3"]}
  32. sled-overlay = "0.1.20"
  33. toml = "0.9.8"
  34. tracing = "0.1.44"
  35. url = "2.5.8"
  36. # Daemon
  37. easy-parallel = "3.3.1"
  38. signal-hook-async-std = "0.4.0"
  39. signal-hook = "0.4.4"
  40. tracing-subscriber = { version = "0.3.23", default-features = false, features = ["fmt"] }
  41. tracing-appender = "0.2.5"
  42. smol = "2.0.2"
  43. # Argument parsing
  44. serde = {version = "1.0.228", features = ["derive"]}
  45. structopt = "0.3.26"
  46. structopt-toml = "0.5.1"
  47. [target.'cfg(not(target_os = "android"))'.dependencies]
  48. rusqlite = {version = "0.37.0", features = ["sqlcipher"]}
  49. [target.'cfg(target_os = "android")'.dependencies]
  50. rusqlite = {version = "0.37.0", features = ["bundled-sqlcipher-vendored-openssl"]}
  51. [lints]
  52. workspace = true