Cargo.toml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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 = {path = "../../src/serial"}
  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. num-bigint = "0.4.6"
  26. prettytable-rs = "0.10.0"
  27. rand = "0.8.5"
  28. rodio = {version = "0.21.1", default-features = false, features = ["playback", "mp3"]}
  29. rusqlite = {version = "0.37.0", features = ["sqlcipher"]}
  30. sled-overlay = "0.1.15"
  31. toml = "0.9.8"
  32. tracing = "0.1.44"
  33. url = "2.5.7"
  34. # Daemon
  35. easy-parallel = "3.3.1"
  36. signal-hook-async-std = "0.4.0"
  37. signal-hook = "0.4.1"
  38. tracing-subscriber = { version = "0.3.22", default-features = false, features = ["fmt"] }
  39. tracing-appender = "0.2.4"
  40. smol = "2.0.2"
  41. # Argument parsing
  42. serde = {version = "1.0.228", features = ["derive"]}
  43. structopt = "0.3.26"
  44. structopt-toml = "0.5.1"
  45. [lints]
  46. workspace = true