Cargo.toml 708 B

12345678910111213141516171819202122232425262728293031
  1. [package]
  2. name = "lilith"
  3. description = "Daemon that spawns P2P seeds"
  4. version = "0.4.1"
  5. edition = "2021"
  6. authors = ["Dyne.org foundation <foundation@dyne.org>"]
  7. license = "AGPL-3.0-only"
  8. homepage = "https://dark.fi"
  9. repository = "https://github.com/darkrenaissance/darkfi"
  10. [dependencies]
  11. darkfi = {path = "../../", features = ["net", "rpc"]}
  12. # Async
  13. async-std = "1.12.0"
  14. async-trait = "0.1.68"
  15. ctrlc = { version = "3.2.5", features = ["termination"] }
  16. easy-parallel = "3.3.0"
  17. smol = "1.3.0"
  18. # Misc
  19. log = "0.4.17"
  20. serde_json = "1.0.96"
  21. simplelog = "0.12.1"
  22. url = "2.3.1"
  23. # Argument parsing
  24. serde = {version = "1.0.162", features = ["derive"]}
  25. structopt = "0.3.26"
  26. structopt-toml = "0.5.1"
  27. toml = "0.7.3"