Cargo.toml 860 B

12345678910111213141516171819202122232425262728293031323334
  1. [package]
  2. name = "faucetd"
  3. version = "0.3.0"
  4. homepage = "https://dark.fi"
  5. description = "DarkFi faucet 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-serial = {path = "../../src/serial"}
  19. easy-parallel = "3.2.0"
  20. hex = "0.4.3"
  21. lazy-init = "0.5.1"
  22. log = "0.4.17"
  23. rand = "0.8.5"
  24. serde_json = "1.0.85"
  25. simplelog = "0.12.0"
  26. sled = "0.34.7"
  27. smol = "1.2.5"
  28. url = "2.3.1"
  29. # Argument parsing
  30. serde = {version = "1.0.145", features = ["derive"]}
  31. structopt = "0.3.26"
  32. structopt-toml = "0.5.1"