| 12345678910111213141516171819202122232425 |
- [package]
- name = "drk"
- version = "0.1.0"
- edition = "2021"
- # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
- [dependencies]
- darkfi = {path= "../../"}
- # Async
- async-std = "1.10.0"
- async-channel = "1.6.1"
- easy-parallel = "3.1.0"
- async-executor = "1.4.1"
- futures = "0.3.17"
- smol = "1.2.5"
- # Utilities
- clap = { version = "3.0.0", features = ["derive"] }
- log = "0.4.14"
- num_cpus = "1.13.0"
- simplelog = "0.11.1"
- thiserror = "1.0.30"
- prettytable-rs = "0.8.0"
|