grin-wallet/Cargo.toml
Yeastplume 2d264db91a
Wallet Interactive-mode, Part 1 (#295)
* cli addition to yml

* first experiments with CLI mode

* rustfmt

* modify owner_single_use to take optional instantiated API

* refactor command functions to take owner api instance

* modify commands to use single owner api instance

* add ability to pass customised message handler to API

* prevent update wallet attempt if wallet hasn't been opened

* fix output when internal updater is running

* add termion, use cli for status updates, remove logging output from CLI

* some attempts to clean up the command prompt and accomodate scanning intervals

* rework listener slightly to allow for cli mode, add close command

* remove termion dependency
2020-02-06 09:08:24 +00:00

52 lines
1.5 KiB
TOML

[package]
name = "grin_wallet"
version = "3.1.0-beta.1"
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
description = "Simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
license = "Apache-2.0"
repository = "https://github.com/mimblewimble/grin-wallet"
keywords = [ "crypto", "grin", "mimblewimble" ]
readme = "README.md"
exclude = ["**/*.grin", "**/*.grin2"]
build = "src/build/build.rs"
edition = "2018"
[[bin]]
name = "grin-wallet"
path = "src/bin/grin-wallet.rs"
[workspace]
members = ["api", "config", "controller", "impls", "libwallet", "util"]
exclude = ["integration"]
[dependencies]
clap = { version = "2.31", features = ["yaml"] }
rpassword = "2.0.0"
ctrlc = { version = "3.1", features = ["termination"] }
failure = "0.1"
failure_derive = "0.1"
prettytable-rs = "0.7"
log = "0.4"
linefeed = "0.5"
semver = "0.9"
rustyline = "6"
colored = "1.6"
lazy_static = "1"
grin_wallet_api = { path = "./api", version = "3.1.0-beta.1" }
grin_wallet_impls = { path = "./impls", version = "3.1.0-beta.1" }
grin_wallet_libwallet = { path = "./libwallet", version = "3.1.0-beta.1" }
grin_wallet_controller = { path = "./controller", version = "3.1.0-beta.1" }
grin_wallet_config = { path = "./config", version = "3.1.0-beta.1" }
grin_wallet_util = { path = "./util", version = "3.1.0-beta.1" }
[build-dependencies]
built = "0.3"
[dev-dependencies]
url = "1.7.2"
serde = "1"
serde_derive = "1"
serde_json = "1"
easy-jsonrpc = "0.5.1"