Cargo.toml 767 B

123456789101112131415161718192021222324252627282930313233343536
  1. [package]
  2. name = "darkfid"
  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. # Encoding and parsing
  9. serde_json = "1.0.72"
  10. serde = {version = "1.0.130", features = ["derive"]}
  11. url = "2.2.2"
  12. # Async
  13. async-std = "1.10.0"
  14. async-trait = "0.1.51"
  15. async-channel = "1.6.1"
  16. easy-parallel = "3.1.0"
  17. async-executor = "1.4.1"
  18. futures = "0.3.17"
  19. smol = "1.2.5"
  20. # Utilities
  21. clap = { version = "3.0.0", features = ["derive"] }
  22. log = "0.4.14"
  23. simplelog = "0.11.1"
  24. thiserror = "1.0.30"
  25. rand = "0.8.4"
  26. num_cpus = "1.13.0"
  27. lazy_static = "1.4.0"
  28. anyhow = "1.0.49"
  29. num-bigint = {version = "0.4.3", features = ["rand", "serde"]}