Cargo.toml 734 B

12345678910111213141516171819202122232425262728293031323334
  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", "rpc"]}
  14. # Async
  15. async-std = "1.12.0"
  16. async-trait = "0.1.57"
  17. ctrlc = { version = "3.2.3", features = ["termination"] }
  18. easy-parallel = "3.2.0"
  19. smol = "1.2.5"
  20. # Misc
  21. fxhash = "0.2.1"
  22. log = "0.4.17"
  23. serde_json = "1.0.85"
  24. simplelog = "0.12.0"
  25. url = "2.3.1"
  26. # Argument parsing
  27. serde = {version = "1.0.145", features = ["derive"]}
  28. structopt = "0.3.26"
  29. structopt-toml = "0.5.1"
  30. toml = "0.5.9"