Cargo.toml 769 B

12345678910111213141516171819202122232425262728293031323334353637
  1. [package]
  2. name = "lilith"
  3. description = "Daemon that spawns P2P seeds"
  4. version = "0.4.2"
  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://codeberg.org/darkrenaissance/darkfi"
  10. [dependencies]
  11. darkfi = {path = "../../", features = ["toml", "async-daemonize", "rpc"]}
  12. # Misc
  13. async-trait = "0.1.86"
  14. futures = "0.3.31"
  15. log = "0.4.26"
  16. semver = "1.0.25"
  17. tinyjson = "2.5.1"
  18. toml = "0.8.20"
  19. url = "2.5.4"
  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.2"
  25. smol = "2.0.2"
  26. # Argument parsing
  27. serde = {version = "1.0.218", features = ["derive"]}
  28. structopt = "0.3.26"
  29. structopt-toml = "0.5.1"
  30. [lints]
  31. workspace = true