2019-02-14 16:40:29 +03:00
|
|
|
[package]
|
2019-03-14 15:06:03 +03:00
|
|
|
name = "grin_wallet_api"
|
2019-02-14 16:40:29 +03:00
|
|
|
version = "1.1.0"
|
|
|
|
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
|
2019-02-15 13:51:23 +03:00
|
|
|
description = "Grin Wallet API"
|
2019-02-14 16:40:29 +03:00
|
|
|
license = "Apache-2.0"
|
|
|
|
repository = "https://github.com/mimblewimble/grin"
|
|
|
|
keywords = [ "crypto", "grin", "mimblewimble" ]
|
|
|
|
readme = "README.md"
|
|
|
|
exclude = ["**/*.grin", "**/*.grin2"]
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
failure = "0.1"
|
|
|
|
failure_derive = "0.1"
|
|
|
|
log = "0.4"
|
2019-03-22 15:03:25 +03:00
|
|
|
uuid = { version = "0.7", features = ["serde", "v4"] }
|
|
|
|
serde_json = "1"
|
2019-03-12 12:37:57 +03:00
|
|
|
easy-jsonrpc = "0.4.1"
|
2019-03-22 15:03:25 +03:00
|
|
|
chrono = { version = "0.4.4", features = ["serde"] }
|
2019-02-14 16:40:29 +03:00
|
|
|
|
2019-03-14 15:06:03 +03:00
|
|
|
grin_wallet_libwallet = { path = "../libwallet", version = "1.1.0" }
|
2019-02-14 16:40:29 +03:00
|
|
|
grin_wallet_config = { path = "../config", version = "1.1.0" }
|
2019-03-22 15:03:25 +03:00
|
|
|
grin_wallet_impls = { path = "../impls", version = "1.1.0" }
|
2019-02-14 16:40:29 +03:00
|
|
|
|
2019-03-26 19:02:31 +03:00
|
|
|
grin_wallet_util = { path = "../util", version = "1.1.0" }
|
2019-03-12 12:37:57 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
serde_json = "1"
|
|
|
|
tempfile = "3.0.7"
|