Cargo.toml 977 B

12345678910111213141516171819202122232425262728293031323334353637
  1. [package]
  2. name = "faucetd"
  3. version = "0.4.1"
  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-trait = "0.1.72"
  12. blake3 = "1.4.1"
  13. chrono = "0.4.26"
  14. darkfi = {path = "../../", features = ["blockchain", "wallet", "rpc", "net", "zkas"]}
  15. darkfi-serial = {path = "../../src/serial"}
  16. darkfi-sdk = {path = "../../src/sdk"}
  17. darkfi-money-contract = {path = "../../src/contract/money", features = ["no-entrypoint", "client"]}
  18. log = "0.4.19"
  19. rand = "0.8.5"
  20. rusqlite = "0.29.0"
  21. serde_json = "1.0.104"
  22. sled = "0.34.7"
  23. url = "2.4.0"
  24. # Daemon
  25. async-std = "1.12.0"
  26. easy-parallel = "3.3.0"
  27. signal-hook-async-std = "0.2.2"
  28. signal-hook = "0.3.17"
  29. simplelog = "0.12.1"
  30. smol = "1.3.0"
  31. # Argument parsing
  32. serde = {version = "1.0.179", features = ["derive"]}
  33. structopt = "0.3.26"
  34. structopt-toml = "0.5.1"