Cargo.toml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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 = { version = "3.2.3", features = ["termination"] }
  30. url = "2.2.2"
  31. fxhash = "0.2.1"
  32. colored = "2.0.0"
  33. # Encoding and parsing
  34. serde = {version = "1.0.142", features = ["derive"]}
  35. serde_json = "1.0.83"
  36. structopt = "0.3.26"
  37. structopt-toml = "0.5.1"
  38. unicode-segmentation = "1.9.0"
  39. crypto_box = {version = "0.8.0", features = ["std"]}
  40. hex = "0.4.3"
  41. bs58 = "0.4.0"
  42. sha2 = "0.10.2"