Cargo.toml 892 B

123456789101112131415161718192021222324252627282930313233343536
  1. [package]
  2. name = "faucetd"
  3. version = "0.3.0"
  4. homepage = "https://dark.fi"
  5. description = "DarkFi faucet daemon"
  6. authors = ["darkfi <dev@dark.fi>"]
  7. repository = "https://github.com/darkrenaissance/darkfi"
  8. license = "AGPL-3.0-only"
  9. edition = "2021"
  10. [dependencies]
  11. async-channel = "1.6.1"
  12. async-executor = "1.4.1"
  13. async-std = "1.11.0"
  14. async-trait = "0.1.53"
  15. blake3 = "1.3.1"
  16. chrono = "0.4.19"
  17. ctrlc-async = {version = "3.2.2", default-features = false, features = ["async-std", "termination"]}
  18. darkfi = {path = "../../", features = ["blockchain", "wallet", "rpc", "net", "node"]}
  19. easy-parallel = "3.2.0"
  20. futures-lite = "1.12.0"
  21. hex = "0.4.3"
  22. lazy-init = "0.5.0"
  23. log = "0.4.17"
  24. num-bigint = "0.4.3"
  25. rand = "0.8.5"
  26. serde_json = "1.0.81"
  27. simplelog = "0.12.0"
  28. sled = "0.34.7"
  29. url = "2.2.2"
  30. # Argument parsing
  31. serde = "1.0.137"
  32. serde_derive = "1.0.137"
  33. structopt = "0.3.26"
  34. structopt-toml = "0.5.0"