Cargo.toml 954 B

12345678910111213141516171819202122232425262728293031323334353637
  1. [package]
  2. name = "darkfid"
  3. version = "0.3.0"
  4. homepage = "https://dark.fi"
  5. description = "DarkFi node daemon"
  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 = "1.12.0"
  12. async-trait = "0.1.57"
  13. blake3 = "1.3.1"
  14. bs58 = "0.4.0"
  15. chrono = "0.4.22"
  16. ctrlc = { version = "3.2.3", features = ["termination"] }
  17. darkfi = {path = "../../", features = ["blockchain", "wallet", "rpc", "net", "node"]}
  18. darkfi-sdk = {path = "../../src/sdk"}
  19. darkfi-serial = {path = "../../src/serial"}
  20. easy-parallel = "3.2.0"
  21. fxhash = "0.2.1"
  22. incrementalmerkletree = "0.3.0"
  23. lazy-init = "0.5.1"
  24. log = "0.4.17"
  25. pasta_curves = "0.4.0"
  26. rand = "0.8.5"
  27. serde_json = "1.0.85"
  28. simplelog = "0.12.0"
  29. sled = "0.34.7"
  30. smol = "1.2.5"
  31. url = "2.3.1"
  32. # Argument parsing
  33. serde = {version = "1.0.145", features = ["derive"]}
  34. structopt = "0.3.26"
  35. structopt-toml = "0.5.1"