Cargo.toml 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. [package]
  2. name = "darkwikid"
  3. description = ""
  4. version = "0.3.0"
  5. edition = "2021"
  6. authors = ["darkfi <dev@dark.fi>"]
  7. license = "AGPL-3.0-only"
  8. homepage = "https://dark.fi"
  9. repository = "https://github.com/darkrenaissance/darkfi"
  10. keywords = []
  11. categories = []
  12. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  13. [dependencies]
  14. darkfi = {path = "../../", features = ["raft", "net", "rpc"]}
  15. # Async
  16. smol = "1.2.5"
  17. async-std = {version = "1.12.0", features = ["attributes"]}
  18. async-trait = "0.1.57"
  19. async-channel = "1.6.1"
  20. async-executor = "1.4.1"
  21. easy-parallel = "3.2.0"
  22. futures = "0.3.21"
  23. # Misc
  24. log = "0.4.17"
  25. simplelog = "0.12.0"
  26. rand = "0.8.5"
  27. chrono = "0.4.19"
  28. thiserror = "1.0.32"
  29. ctrlc-async = {version= "3.2.2", default-features = false, features = ["async-std", "termination"]}
  30. url = "2.2.2"
  31. fxhash = "0.2.1"
  32. # Encoding and parsing
  33. serde = {version = "1.0.142", features = ["derive"]}
  34. serde_json = "1.0.83"
  35. structopt = "0.3.26"
  36. structopt-toml = "0.5.1"
  37. unicode-segmentation = "1.9.0"
  38. crypto_box = {version = "0.8.0", features = ["std"]}
  39. hex = "0.4.3"
  40. bs58 = "0.4.0"