Cargo.toml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. [dependencies]
  11. # Darkfi
  12. darkfi = {path = "../../", features = ["async-daemonize", "bs58", "rpc", "validator"]}
  13. darkfi_money_contract = {path = "../../src/contract/money", features = ["no-entrypoint", "client"]}
  14. darkfi_dao_contract = {path = "../../src/contract/dao", features = ["no-entrypoint", "client"]}
  15. darkfi_deployooor_contract = {path = "../../src/contract/deployooor", features = ["no-entrypoint", "client"]}
  16. darkfi-sdk = {path = "../../src/sdk", features = ["async"]}
  17. darkfi-serial = "0.5.0"
  18. # Misc
  19. blake3 = "1.8.2"
  20. bs58 = "0.5.1"
  21. futures = "0.3.31"
  22. lazy_static = "1.5.0"
  23. libc = "0.2"
  24. linenoise-rs = "0.1.1"
  25. log = "0.4.27"
  26. num-bigint = "0.4.6"
  27. prettytable-rs = "0.10.0"
  28. rand = "0.8.5"
  29. rodio = {version = "0.20.1", default-features = false, features = ["minimp3"]}
  30. rusqlite = {version = "0.36.0", features = ["sqlcipher"]}
  31. sled-overlay = "0.1.10"
  32. toml = "0.9.5"
  33. url = "2.5.4"
  34. # Daemon
  35. easy-parallel = "3.3.1"
  36. signal-hook-async-std = "0.3.0"
  37. signal-hook = "0.3.18"
  38. simplelog = "0.12.2"
  39. smol = "2.0.2"
  40. # Argument parsing
  41. serde = {version = "1.0.219", features = ["derive"]}
  42. structopt = "0.3.26"
  43. structopt-toml = "0.5.1"
  44. [lints]
  45. workspace = true