Cargo.toml 901 B

123456789101112131415161718192021222324252627282930313233
  1. [package]
  2. name = "tau"
  3. description = "Command-line client for taud"
  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://github.com/darkrenaissance/darkfi"
  10. [dependencies]
  11. libc = "0.2.147"
  12. darkfi = {path = "../../../", features = ["rpc"]}
  13. taud = {path = "../taud"}
  14. # Async
  15. async-std = {version = "1.12.0", features = ["attributes"]}
  16. # Misc
  17. chrono = "0.4.26"
  18. colored = "2.0.4"
  19. libsqlite3-sys = {version = "0.26.0", features = ["bundled-sqlcipher-vendored-openssl"]}
  20. log = "0.4.20"
  21. prettytable-rs = "0.10.0"
  22. simplelog = "0.12.1"
  23. term_grid = { git = "https://github.com/Dastan-glitch/rust-term-grid.git" }
  24. textwrap = "0.16.0"
  25. url = "2.4.0"
  26. # Encoding and parsing
  27. clap = {version = "4.3.22", features = ["derive"]}
  28. serde = {version = "1.0.183", features = ["derive"]}
  29. tinyjson = "2.5.1"