grin-wallet/controller/Cargo.toml

41 lines
1.2 KiB
TOML
Raw Normal View History

2019-02-13 19:39:34 +03:00
[package]
name = "grin_wallet_controller"
2019-12-20 14:23:11 +03:00
version = "3.1.0-beta.1"
2019-02-13 19:39:34 +03:00
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
description = "Controllers for grin wallet instantiation"
2019-02-13 19:39:34 +03:00
license = "Apache-2.0"
2019-04-03 19:03:25 +03:00
repository = "https://github.com/mimblewimble/grin-wallet"
2019-02-13 19:39:34 +03:00
keywords = [ "crypto", "grin", "mimblewimble" ]
exclude = ["**/*.grin", "**/*.grin2"]
#build = "src/build/build.rs"
edition = "2018"
[dependencies]
failure = "0.1"
failure_derive = "0.1"
futures = "0.1"
hyper = "0.12"
rand = "0.5"
serde = "1"
serde_derive = "1"
serde_json = "1"
log = "0.4"
prettytable-rs = "0.7"
ring = "0.13"
term = "0.5"
tokio = "= 0.1.11"
tokio-core = "0.1"
tokio-retry = "0.1"
uuid = { version = "0.7", features = ["serde", "v4"] }
2019-02-13 19:39:34 +03:00
url = "1.7.0"
chrono = { version = "0.4.4", features = ["serde"] }
easy-jsonrpc-mw = "0.5.3"
lazy_static = "1"
2019-02-13 19:39:34 +03:00
2019-12-20 14:23:11 +03:00
grin_wallet_util = { path = "../util", version = "3.1.0-beta.1" }
2019-12-20 14:23:11 +03:00
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_config = { path = "../config", version = "3.1.0-beta.1" }