| 123456789101112131415161718192021222324252627282930313233 |
- [package]
- name = "tau"
- description = "Command-line client for taud"
- version = "0.4.1"
- edition = "2021"
- authors = ["Dyne.org foundation <foundation@dyne.org>"]
- license = "AGPL-3.0-only"
- homepage = "https://dark.fi"
- repository = "https://github.com/darkrenaissance/darkfi"
- [dependencies]
- libc = "0.2.147"
- darkfi = {path = "../../../", features = ["rpc"]}
- taud = {path = "../taud"}
- # Async
- async-std = {version = "1.12.0", features = ["attributes"]}
- # Misc
- chrono = "0.4.26"
- colored = "2.0.4"
- libsqlite3-sys = {version = "0.26.0", features = ["bundled-sqlcipher-vendored-openssl"]}
- log = "0.4.20"
- prettytable-rs = "0.10.0"
- simplelog = "0.12.1"
- term_grid = { git = "https://github.com/Dastan-glitch/rust-term-grid.git" }
- textwrap = "0.16.0"
- url = "2.4.0"
- # Encoding and parsing
- clap = {version = "4.3.22", features = ["derive"]}
- serde = {version = "1.0.183", features = ["derive"]}
- tinyjson = "2.5.1"
|