Cargo.toml 514 B

1234567891011121314151617181920
  1. [package]
  2. name = "fu"
  3. version = "0.3.0"
  4. homepage = "https://dark.fi"
  5. description = "Command-line client for fud"
  6. authors = ["darkfi <dev@dark.fi>"]
  7. repository = "https://github.com/darkrenaissance/darkfi"
  8. license = "AGPL-3.0-only"
  9. edition = "2021"
  10. [dependencies]
  11. async-std = {version = "1.12.0", features = ["attributes"]}
  12. clap = {version = "3.2.20", features = ["derive"]}
  13. darkfi = {path = "../../../../", features = ["util"]}
  14. log = "0.4.17"
  15. serde_json = "1.0.85"
  16. simplelog = "0.12.0"
  17. url = "2.2.2"
  18. [workspace]