2019-02-13 18:05:19 +03:00
|
|
|
[package]
|
2019-03-14 15:06:03 +03:00
|
|
|
name = "grin_wallet_libwallet"
|
2020-07-31 12:33:45 +03:00
|
|
|
version = "4.1.0-alpha.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"
|
2019-04-03 19:03:25 +03:00
|
|
|
repository = "https://github.com/mimblewimble/grin-wallet"
|
2019-02-13 18:05:19 +03:00
|
|
|
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"
|
2020-06-10 19:31:04 +03:00
|
|
|
rand = "0.6"
|
2019-02-13 18:05:19 +03:00
|
|
|
serde = "1"
|
|
|
|
serde_derive = "1"
|
|
|
|
serde_json = "1"
|
|
|
|
log = "0.4"
|
2020-06-10 19:31:04 +03:00
|
|
|
uuid = { version = "0.8", features = ["serde", "v4"] }
|
|
|
|
chrono = { version = "0.4.11", features = ["serde"] }
|
2019-03-22 15:03:25 +03:00
|
|
|
lazy_static = "1"
|
2020-06-10 19:31:04 +03:00
|
|
|
strum = "0.18"
|
|
|
|
strum_macros = "0.18"
|
2020-08-10 16:42:53 +03:00
|
|
|
ed25519-dalek = "1.0.0-pre.4"
|
2020-05-22 13:48:11 +03:00
|
|
|
x25519-dalek = "0.6"
|
2020-05-19 13:19:03 +03:00
|
|
|
base64 = "0.9"
|
2020-05-22 13:48:11 +03:00
|
|
|
regex = "1.3"
|
|
|
|
sha2 = "0.8"
|
|
|
|
bs58 = "0.3"
|
|
|
|
age = "0.4"
|
2020-06-10 19:31:04 +03:00
|
|
|
curve25519-dalek = "2.1"
|
2020-05-22 13:48:11 +03:00
|
|
|
secrecy = "0.6"
|
2020-05-26 11:51:05 +03:00
|
|
|
bech32 = "0.7"
|
2020-06-10 12:28:23 +03:00
|
|
|
byteorder = "1.3"
|
2019-02-13 18:05:19 +03:00
|
|
|
|
2020-07-31 12:33:45 +03:00
|
|
|
grin_wallet_util = { path = "../util", version = "4.1.0-alpha.1" }
|
|
|
|
grin_wallet_config = { path = "../config", version = "4.1.0-alpha.1" }
|
2020-05-22 13:48:11 +03:00
|
|
|
|