Cargo.toml 858 B

12345678910111213141516171819202122232425262728293031323334
  1. [package]
  2. name = "darkwikid"
  3. version = "0.4.1"
  4. homepage = "https://dark.fi"
  5. description = "Reference daemon for a decentralized P2P wiki"
  6. authors = ["Dyne.org foundation <foundation@dyne.org>"]
  7. repository = "https://github.com/darkrenaissance/darkfi"
  8. license = "AGPL-3.0-only"
  9. edition = "2021"
  10. [dependencies]
  11. async-std = "1.12.0"
  12. async-trait = "0.1.68"
  13. blake3 = "1.3.3"
  14. bs58 = "0.4.0"
  15. darkfi = {path = "../../../", features = ["raft", "rpc", "util"]}
  16. darkfi-serial = {path = "../../../src/serial"}
  17. dryoc = "0.5.0"
  18. easy-parallel = "3.3.0"
  19. futures = "0.3.28"
  20. lazy_static = "1.4.0"
  21. log = "0.4.17"
  22. serde = "1.0.160"
  23. serde_derive = "1.0.160"
  24. serde_json = "1.0.96"
  25. signal-hook-async-std = "0.2.2"
  26. signal-hook = "0.3.15"
  27. simplelog = "0.12.1"
  28. structopt = "0.3.26"
  29. structopt-toml = "0.5.1"
  30. smol = "1.3.0"
  31. toml = "0.7.3"
  32. unicode-segmentation = "1.10.1"
  33. url = "2.3.1"