Cargo.toml 773 B

1234567891011121314151617181920212223242526272829303132333435
  1. [package]
  2. name = "lilith"
  3. description = "Daemon that spawns P2P seeds"
  4. version = "0.3.0"
  5. edition = "2021"
  6. authors = ["darkfi <dev@dark.fi>"]
  7. license = "AGPL-3.0-only"
  8. homepage = "https://dark.fi"
  9. repository = "https://github.com/darkrenaissance/darkfi"
  10. keywords = []
  11. categories = []
  12. [dependencies]
  13. darkfi = {path = "../../", features = ["net"]}
  14. # Async
  15. async-channel = "1.6.1"
  16. async-executor = "1.4.1"
  17. async-std = "1.12.0"
  18. ctrlc-async = {version = "3.2.2", default-features = false, features = ["async-std", "termination"]}
  19. easy-parallel = "3.2.0"
  20. futures-lite = "1.12.0"
  21. # Misc
  22. fxhash = "0.2.1"
  23. log = "0.4.17"
  24. simplelog = "0.12.0"
  25. url = "2.2.2"
  26. # Argument parsing
  27. serde = "1.0.142"
  28. serde_derive = "1.0.142"
  29. structopt = "0.3.26"
  30. structopt-toml = "0.5.1"
  31. toml = "0.5.9"