2019-02-13 18:05:19 +03:00
|
|
|
[package]
|
|
|
|
name = "grin_wallet"
|
2019-10-04 14:41:18 +03:00
|
|
|
version = "3.0.0-alpha.1"
|
2019-02-13 18:05:19 +03:00
|
|
|
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
|
|
|
|
description = "Simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
|
|
|
|
license = "Apache-2.0"
|
2019-04-03 19:03:25 +03:00
|
|
|
repository = "https://github.com/mimblewimble/grin-wallet"
|
2019-02-13 18:05:19 +03:00
|
|
|
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]
|
2019-03-26 19:02:31 +03:00
|
|
|
members = ["api", "config", "controller", "impls", "libwallet", "util"]
|
2019-02-27 16:14:36 +03:00
|
|
|
exclude = ["integration"]
|
2019-02-13 18:05:19 +03:00
|
|
|
|
|
|
|
[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"
|
2019-02-14 13:52:16 +03:00
|
|
|
linefeed = "0.5"
|
2019-06-27 12:41:05 +03:00
|
|
|
semver = "0.9"
|
2019-02-13 18:05:19 +03:00
|
|
|
|
2019-10-04 14:41:18 +03:00
|
|
|
grin_wallet_api = { path = "./api", version = "3.0.0-alpha.1" }
|
|
|
|
grin_wallet_impls = { path = "./impls", version = "3.0.0-alpha.1" }
|
|
|
|
grin_wallet_libwallet = { path = "./libwallet", version = "3.0.0-alpha.1" }
|
|
|
|
grin_wallet_controller = { path = "./controller", version = "3.0.0-alpha.1" }
|
|
|
|
grin_wallet_config = { path = "./config", version = "3.0.0-alpha.1" }
|
2019-02-13 19:39:34 +03:00
|
|
|
|
2019-10-04 14:41:18 +03:00
|
|
|
grin_wallet_util = { path = "./util", version = "3.0.0-alpha.1" }
|
2019-02-13 18:05:19 +03:00
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
built = "0.3"
|
2019-08-13 11:36:21 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
url = "1.7.2"
|
|
|
|
serde = "1"
|
|
|
|
serde_derive = "1"
|
|
|
|
serde_json = "1"
|
|
|
|
easy-jsonrpc = "0.5.1"
|