Cargo.toml 549 B

1234567891011121314151617181920212223242526
  1. [package]
  2. name = "fu"
  3. description = "Command-line client for fud"
  4. version = "0.5.0"
  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. fud = {path = "../fud/"}
  13. # Async
  14. smol = "2.0.2"
  15. # Misc
  16. clap = {version = "4.4.11", features = ["derive"]}
  17. log = "0.4.27"
  18. simplelog = "0.12.2"
  19. url = "2.5.4"
  20. termcolor = "1.4.1"
  21. [lints]
  22. workspace = true