Cargo.toml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. [package]
  2. name = "drk2"
  3. version = "0.4.1"
  4. homepage = "https://dark.fi"
  5. description = "Command-line client for darkfid"
  6. authors = ["Dyne.org foundation <foundation@dyne.org>"]
  7. repository = "https://github.com/darkrenaissance/darkfi"
  8. license = "AGPL-3.0-only"
  9. edition = "2021"
  10. [dependencies]
  11. # Darkfi
  12. darkfi = {path = "../../", features = ["async-daemonize", "rpc"]}
  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-sdk = {path = "../../src/sdk", features = ["async"]}
  16. darkfi-serial = {path = "../../src/serial"}
  17. # Misc
  18. log = "0.4.20"
  19. rodio = {version = "0.17.3", default-features = false, features = ["minimp3"]}
  20. rusqlite = {version = "0.30.0", features = ["sqlcipher"]}
  21. url = "2.5.0"
  22. # Daemon
  23. easy-parallel = "3.3.1"
  24. signal-hook-async-std = "0.2.2"
  25. signal-hook = "0.3.17"
  26. simplelog = "0.12.1"
  27. smol = "1.3.0"
  28. # Argument parsing
  29. serde = {version = "1.0.195", features = ["derive"]}
  30. structopt = "0.3.26"
  31. structopt-toml = "0.5.1"