Cargo.toml 941 B

12345678910111213141516171819202122232425262728293031323334353637
  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.12.0"
  14. async-trait = "0.1.57"
  15. blake3 = "1.3.1"
  16. bs58 = "0.4.0"
  17. chrono = "0.4.19"
  18. ctrlc-async = {version = "3.2.2", default-features = false, features = ["async-std", "termination"]}
  19. darkfi = {path = "../../", features = ["blockchain", "wallet", "rpc", "net", "node"]}
  20. easy-parallel = "3.2.0"
  21. futures-lite = "1.12.0"
  22. hex = "0.4.3"
  23. lazy-init = "0.5.1"
  24. log = "0.4.17"
  25. num-bigint = {version = "0.4.3", features = ["serde"]}
  26. rand = "0.8.5"
  27. serde_json = "1.0.83"
  28. simplelog = "0.12.0"
  29. sled = "0.34.7"
  30. url = "2.2.2"
  31. # Argument parsing
  32. serde = "1.0.142"
  33. serde_derive = "1.0.142"
  34. structopt = "0.3.26"
  35. structopt-toml = "0.5.1"