2019-02-13 18:05:19 +03:00
|
|
|
[package]
|
2019-03-14 15:06:03 +03:00
|
|
|
name = "grin_wallet_libwallet"
|
2019-04-03 16:50:44 +03:00
|
|
|
version = "1.1.0-beta.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"
|
|
|
|
repository = "https://github.com/mimblewimble/grin"
|
|
|
|
keywords = [ "crypto", "grin", "mimblewimble" ]
|
|
|
|
exclude = ["**/*.grin", "**/*.grin2"]
|
|
|
|
#build = "src/build/build.rs"
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
blake2-rfc = "0.2"
|
|
|
|
failure = "0.1"
|
|
|
|
failure_derive = "0.1"
|
|
|
|
rand = "0.5"
|
|
|
|
serde = "1"
|
|
|
|
serde_derive = "1"
|
|
|
|
serde_json = "1"
|
|
|
|
log = "0.4"
|
2019-03-22 15:03:25 +03:00
|
|
|
uuid = { version = "0.7", features = ["serde", "v4"] }
|
2019-02-13 18:05:19 +03:00
|
|
|
chrono = { version = "0.4.4", features = ["serde"] }
|
2019-03-22 15:03:25 +03:00
|
|
|
lazy_static = "1"
|
2019-02-13 18:05:19 +03:00
|
|
|
|
2019-04-03 16:50:44 +03:00
|
|
|
grin_wallet_util = { path = "../util", version = "1.1.0-beta.1" }
|
2019-02-14 16:40:29 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2019-04-03 16:50:44 +03:00
|
|
|
grin_wallet_config = { path = "../config", version = "1.1.0-beta.1" }
|