Cargo.toml 772 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. [package]
  2. name = "darkwiki"
  3. description = ""
  4. version = "0.4.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 = ["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.7.1"
  20. futures = "0.3.24"
  21. # Misc
  22. log = "0.4.17"
  23. simplelog = "0.12.0"
  24. rand = "0.8.5"
  25. url = "2.3.1"
  26. # Encoding and parsing
  27. serde = {version = "1.0.145", features = ["derive"]}
  28. serde_json = "1.0.85"
  29. structopt = "0.3.26"