Cargo.toml 746 B

123456789101112131415161718192021222324252627282930313233
  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 = ["toml", "async-daemonize", "net", "rpc"]}
  12. # Misc
  13. async-trait = "0.1.74"
  14. futures = "0.3.29"
  15. log = "0.4.20"
  16. semver = "1.0.20"
  17. tinyjson = "2.5.1"
  18. toml = "0.8.8"
  19. url = "2.4.1"
  20. # Daemon
  21. easy-parallel = "3.3.1"
  22. signal-hook-async-std = "0.2.2"
  23. signal-hook = "0.3.17"
  24. simplelog = "0.12.1"
  25. smol = "1.3.0"
  26. # Argument parsing
  27. serde = {version = "1.0.192", features = ["derive"]}
  28. structopt = "0.3.26"
  29. structopt-toml = "0.5.1"