[package] name = "tofuri-wallet" version = "0.1.0" edition = "2021" license = "GPL-3.0" description = "Tofuri wallet" readme = "crate.md" categories = ["cryptography::cryptocurrencies"] repository = "https://github.com/tofuri/tofuri" [dependencies] tofuri-api-core = { version = "0.1", path = "../api-core" } tofuri-core = { version = "0.1", path = "../core" } tofuri-api-util = { version = "0.1", path = "../api-util" } tofuri-address = { version = "0.1", path = "../address" } tofuri-int = { version = "0.1", path = "../int" } tofuri-key = { version = "0.1", path = "../key" } tofuri-stake = { version = "0.1", path = "../stake" } tofuri-transaction = { version = "0.1", path = "../transaction" } tofuri-util = { version = "0.1", path = "../util" } chacha20poly1305 = "0.10" inquire = "0.3" colored = "2.0" argon2 = "0.4" zxcvbn = "2.2" chrono = "0.4" hex = "0.4" crossterm = "0.25" log = "0.4" tokio = { version = "1.24", features = ["full"] } clap = { version = "3.2", features = ["derive"] } rand = "0.8" lazy_static = "1.4" bincode = "1.3" reqwest = { version = "0.11", features = ["json"] }