Cargo.toml 560 B

1234567891011121314151617181920212223242526272829
  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. fxhash = "0.2.1"
  16. log = "0.4.17"
  17. simplelog = "0.12.0"
  18. url = "2.2.2"
  19. # Argument parsing
  20. serde = "1.0.138"
  21. serde_derive = "1.0.138"
  22. structopt = "0.3.26"
  23. structopt-toml = "0.5.0"
  24. toml = "0.5.9"
  25. [workspace]