Cargo.toml 775 B

12345678910111213141516171819202122232425262728293031323334353637
  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.7.1"
  16. async-executor = "1.4.1"
  17. async-std = "1.12.0"
  18. async-trait = "0.1.57"
  19. ctrlc = { version = "3.2.3", features = ["termination"] }
  20. easy-parallel = "3.2.0"
  21. futures-lite = "1.12.0"
  22. # Misc
  23. fxhash = "0.2.1"
  24. log = "0.4.17"
  25. serde_json = "1.0.85"
  26. simplelog = "0.12.0"
  27. url = "2.2.2"
  28. # Argument parsing
  29. serde = "1.0.144"
  30. serde_derive = "1.0.144"
  31. structopt = "0.3.26"
  32. structopt-toml = "0.5.1"
  33. toml = "0.5.9"