Cargo.toml 505 B

12345678910111213141516171819202122232425
  1. [package]
  2. name = "fu"
  3. description = "Command-line client for fud"
  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://codeberg.org/darkrenaissance/darkfi"
  10. [dependencies]
  11. darkfi = {path = "../../../", features = ["util", "rpc"]}
  12. # Async
  13. smol = "2.0.2"
  14. # Misc
  15. clap = {version = "4.4.11", features = ["derive"]}
  16. log = "0.4.26"
  17. simplelog = "0.12.2"
  18. url = "2.5.4"
  19. [lints]
  20. workspace = true