Cargo.toml 580 B

1234567891011121314151617181920212223242526272829
  1. [package]
  2. name = "gateway"
  3. version = "0.1.0"
  4. edition = "2021"
  5. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  6. [dependencies]
  7. darkfi = {path= "../../", features= ["node", "chain"] }
  8. # Async
  9. async-std = "1.10.0"
  10. async-channel = "1.6.1"
  11. easy-parallel = "3.1.0"
  12. async-executor = "1.4.1"
  13. futures = "0.3.17"
  14. smol = "1.2.5"
  15. # Utilities
  16. clap = { version = "3.0.0", features = ["derive"] }
  17. log = "0.4.14"
  18. num_cpus = "1.13.0"
  19. simplelog = "0.11.1"
  20. thiserror = "1.0.30"
  21. rand = "0.8.4"
  22. # Encoding and parsing
  23. bytes = "1.1.0"
  24. url = "2.2.2"