Cargo.toml 857 B

123456789101112131415161718192021222324252627282930313233343536
  1. [package]
  2. name = "darkwikid"
  3. version = "0.4.0"
  4. homepage = "https://dark.fi"
  5. description = "Reference daemon for a decentralized P2P wiki"
  6. authors = ["darkfi <dev@dark.fi>"]
  7. repository = "https://github.com/darkrenaissance/darkfi"
  8. license = "AGPL-3.0-only"
  9. edition = "2021"
  10. [dependencies]
  11. async-channel = "1.7.1"
  12. async-executor = "1.4.1"
  13. async-std = "1.12.0"
  14. async-trait = "0.1.57"
  15. blake3 = "1.3.1"
  16. bs58 = "0.4.0"
  17. darkfi = {path = "../../../", features = ["raft", "rpc", "util"]}
  18. dryoc = "0.3.14"
  19. easy-parallel = "3.2.0"
  20. futures = "0.3.24"
  21. fxhash = "0.2.1"
  22. lazy_static = "1.4.0"
  23. log = "0.4.17"
  24. serde = "1.0.145"
  25. serde_derive = "1.0.145"
  26. serde_json = "1.0.85"
  27. signal-hook-async-std = "0.2.2"
  28. signal-hook = "0.3.14"
  29. simplelog = "0.12.0"
  30. structopt = "0.3.26"
  31. structopt-toml = "0.5.1"
  32. smol = "1.2.5"
  33. toml = "0.5.9"
  34. unicode-segmentation = "1.10.0"
  35. url = "2.3.1"