grin-wallet/Cargo.toml
Yeastplume 47ee03cadd
V2 slate versioning enablement (#85)
* fix for command line listener port override

* reduce parameter query size

* Add slate versioning

* rustfmt

* bump version number

* Add tests for slate version conversion

* rustfmt

* Updates and test addition based on bdap's review

* rustfmt
2019-04-23 11:29:59 +01:00

41 lines
1.3 KiB
TOML

[package]
name = "grin_wallet"
version = "1.1.0-beta.2"
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"
grin_wallet_api = { path = "./api", version = "1.1.0-beta.2" }
grin_wallet_impls = { path = "./impls", version = "1.1.0-beta.2" }
grin_wallet_libwallet = { path = "./libwallet", version = "1.1.0-beta.2" }
grin_wallet_controller = { path = "./controller", version = "1.1.0-beta.2" }
grin_wallet_config = { path = "./config", version = "1.1.0-beta.2" }
grin_wallet_util = { path = "./util", version = "1.1.0-beta.2" }
[build-dependencies]
built = "0.3"