Cargo.toml 833 B

1234567891011121314151617181920212223242526272829303132333435
  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.71"
  14. futures = "0.3.28"
  15. libsqlite3-sys = {version = "0.26.0", features = ["bundled-sqlcipher-vendored-openssl"]}
  16. log = "0.4.19"
  17. semver = "1.0.17"
  18. serde_json = "1.0.100"
  19. toml = "0.7.6"
  20. url = "2.4.0"
  21. # Daemon
  22. async-std = "1.12.0"
  23. easy-parallel = "3.3.0"
  24. signal-hook-async-std = "0.2.2"
  25. signal-hook = "0.3.15"
  26. simplelog = "0.12.1"
  27. smol = "1.3.0"
  28. # Argument parsing
  29. serde = {version = "1.0.171", features = ["derive"]}
  30. structopt = "0.3.26"
  31. structopt-toml = "0.5.1"