Cargo.toml 552 B

1234567891011121314151617181920212223242526
  1. [package]
  2. name = "drk"
  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= "../../"}
  8. # Encoding and parsing
  9. serde_json = "1.0.72"
  10. serde = {version = "1.0.130", features = ["derive"]}
  11. # Async
  12. async-std = {version = "1.10.0", features = ["attributes"]}
  13. async-executor = "1.4.1"
  14. futures = "0.3.17"
  15. smol = "1.2.5"
  16. # Utilities
  17. clap = { version = "3.0.0", features = ["derive"] }
  18. prettytable-rs = "0.8.0"
  19. simplelog = "0.11.1"
  20. log = "0.4.14"