Cargo.toml 808 B

12345678910111213141516171819202122232425262728293031323334
  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. # Misc
  13. async-trait = "0.1.73"
  14. futures = "0.3.28"
  15. libsqlite3-sys = {version = "0.26.0", features = ["bundled-sqlcipher-vendored-openssl"]}
  16. log = "0.4.20"
  17. semver = "1.0.18"
  18. tinyjson = "2.5.1"
  19. toml = "0.7.6"
  20. url = "2.4.0"
  21. # Daemon
  22. easy-parallel = "3.3.0"
  23. signal-hook-async-std = "0.2.2"
  24. signal-hook = "0.3.17"
  25. simplelog = "0.12.1"
  26. smol = "1.3.0"
  27. # Argument parsing
  28. serde = {version = "1.0.183", features = ["derive"]}
  29. structopt = "0.3.26"
  30. structopt-toml = "0.5.1"