Cargo.toml 528 B

123456789101112131415161718192021222324252627
  1. [package]
  2. name = "seedd"
  3. version = "0.3.0"
  4. edition = "2021"
  5. [dependencies.darkfi]
  6. path = "../../../"
  7. features = ["net"]
  8. [dependencies]
  9. async-channel = "1.6.1"
  10. async-executor = "1.4.1"
  11. async-std = "1.12.0"
  12. ctrlc-async = {version = "3.2.2", default-features = false, features = ["async-std", "termination"]}
  13. easy-parallel = "3.2.0"
  14. futures-lite = "1.12.0"
  15. log = "0.4.17"
  16. simplelog = "0.12.0"
  17. url = "2.2.2"
  18. # Argument parsing
  19. serde = "1.0.138"
  20. serde_derive = "1.0.138"
  21. structopt = "0.3.26"
  22. structopt-toml = "0.5.0"
  23. [workspace]