Cargo.toml 867 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. [package]
  2. name = "lilith"
  3. description = "Daemon that spawns P2P seeds"
  4. version = "0.5.0"
  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.89"
  14. futures = "0.3.32"
  15. tracing = "0.1.44"
  16. semver = "1.0.28"
  17. tinyjson = "2.5.1"
  18. toml = "0.9.8"
  19. url = "2.5.8"
  20. # Daemon
  21. easy-parallel = "3.3.1"
  22. signal-hook-async-std = "0.4.0"
  23. signal-hook = "0.4.4"
  24. tracing-subscriber = { version = "0.3.23", default-features = false, features = ["fmt"] }
  25. tracing-appender = "0.2.5"
  26. smol = "2.0.2"
  27. # Argument parsing
  28. serde = {version = "1.0.228", features = ["derive"]}
  29. structopt = "0.3.26"
  30. structopt-toml = "0.5.1"
  31. [lints]
  32. workspace = true