Cargo.toml 668 B

12345678910111213141516171819202122
  1. [package]
  2. name = "darkotc"
  3. version = "0.3.0"
  4. homepage = "https://dark.fi"
  5. description = "Atomic swap commandline tool"
  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. async-std = {version = "1.12.0", features = ["attributes"]}
  12. bs58 = "0.4.0"
  13. clap = {version = "3.2.20", features = ["derive"]}
  14. darkfi = {path = "../../", features = ["crypto", "rpc", "util", "tx"]}
  15. darkfi-sdk = {path = "../../src/sdk"}
  16. darkfi-serial = {path = "../../src/serial"}
  17. halo2_proofs = "0.2.0"
  18. halo2_gadgets = "0.2.0"
  19. rand = "0.8.5"
  20. serde_json = "1.0.85"
  21. url = "2.3.1"