2019-02-13 18:05:19 +03:00
|
|
|
[package]
|
|
|
|
name = "grin_wallet"
|
|
|
|
version = "1.1.0"
|
|
|
|
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"
|
|
|
|
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-02-19 14:04:58 +03:00
|
|
|
members = ["apiwallet", "config", "integration", "libwallet", "refwallet"]
|
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-02-13 18:05:19 +03:00
|
|
|
|
2019-02-14 16:40:29 +03:00
|
|
|
grin_apiwallet = { path = "./apiwallet", version = "1.1.0" }
|
2019-02-13 19:39:34 +03:00
|
|
|
grin_libwallet = { path = "./libwallet", version = "1.1.0" }
|
2019-02-14 13:52:16 +03:00
|
|
|
grin_refwallet = { path = "./refwallet", version = "1.1.0" }
|
2019-02-13 19:39:34 +03:00
|
|
|
grin_wallet_config = { path = "./config", version = "1.1.0" }
|
|
|
|
|
2019-02-15 13:51:23 +03:00
|
|
|
grin_core = { git = "https://github.com/mimblewimble/grin", branch = "milestone/1.1.0" }
|
|
|
|
grin_keychain = { git = "https://github.com/mimblewimble/grin", branch = "milestone/1.1.0" }
|
|
|
|
grin_chain = { git = "https://github.com/mimblewimble/grin", branch = "milestone/1.1.0" }
|
|
|
|
grin_util = { git = "https://github.com/mimblewimble/grin", branch = "milestone/1.1.0" }
|
|
|
|
grin_api = { git = "https://github.com/mimblewimble/grin", branch = "milestone/1.1.0" }
|
|
|
|
grin_store = { git = "https://github.com/mimblewimble/grin", branch = "milestone/1.1.0" }
|
2019-02-13 18:05:19 +03:00
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
built = "0.3"
|