Cargo.toml 795 B

123456789101112131415161718192021222324252627282930313233
  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-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. easy-parallel = "3.2.0"
  19. hex = "0.4.3"
  20. lazy-init = "0.5.1"
  21. log = "0.4.17"
  22. rand = "0.8.5"
  23. serde_json = "1.0.85"
  24. simplelog = "0.12.0"
  25. sled = "0.34.7"
  26. smol = "1.2.5"
  27. url = "2.3.1"
  28. # Argument parsing
  29. serde = {version = "1.0.145", features = ["derive"]}
  30. structopt = "0.3.26"
  31. structopt-toml = "0.5.1"