2019-03-26 19:02:31 +03:00
|
|
|
[package]
|
|
|
|
name = "grin_wallet_util"
|
2020-06-16 17:43:13 +03:00
|
|
|
version = "4.0.0-beta.3"
|
2019-03-26 19:02:31 +03:00
|
|
|
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
|
|
|
|
description = "Util, for generic utilities and to re-export grin crates"
|
|
|
|
license = "Apache-2.0"
|
2019-04-03 19:03:25 +03:00
|
|
|
repository = "https://github.com/mimblewimble/grin-wallet"
|
2019-03-26 19:02:31 +03:00
|
|
|
keywords = [ "crypto", "grin", "mimblewimble" ]
|
|
|
|
workspace = ".."
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[dependencies]
|
2020-06-10 19:31:04 +03:00
|
|
|
rand = "0.6"
|
2019-03-26 19:02:31 +03:00
|
|
|
serde = "1"
|
|
|
|
serde_derive = "1"
|
2020-06-10 19:31:04 +03:00
|
|
|
ed25519-dalek = "1.0.0-pre.3"
|
2020-01-24 16:02:09 +03:00
|
|
|
data-encoding = "2"
|
|
|
|
sha3 = "0.8"
|
2019-03-26 19:02:31 +03:00
|
|
|
|
2019-04-03 16:22:30 +03:00
|
|
|
# For Release
|
2020-03-06 12:33:47 +03:00
|
|
|
# grin_core = "3.1.0"
|
|
|
|
# grin_keychain = "3.1.0"
|
|
|
|
# grin_chain = "3.1.0"
|
|
|
|
# grin_util = "3.1.0"
|
|
|
|
# grin_api = "3.1.0"
|
|
|
|
# grin_store = "3.1.0"
|
2019-04-03 16:22:30 +03:00
|
|
|
|
2019-05-16 12:50:31 +03:00
|
|
|
# For beta release
|
2019-10-14 22:24:09 +03:00
|
|
|
|
2020-06-12 18:14:23 +03:00
|
|
|
grin_core = { git = "https://github.com/mimblewimble/grin", tag = "v4.0.0-beta.2"}
|
|
|
|
grin_keychain = { git = "https://github.com/mimblewimble/grin", tag = "v4.0.0-beta.2" }
|
|
|
|
grin_chain = { git = "https://github.com/mimblewimble/grin", tag = "v4.0.0-beta.2" }
|
|
|
|
grin_util = { git = "https://github.com/mimblewimble/grin", tag = "v4.0.0-beta.2" }
|
|
|
|
grin_api = { git = "https://github.com/mimblewimble/grin", tag = "v4.0.0-beta.2" }
|
|
|
|
grin_store = { git = "https://github.com/mimblewimble/grin", tag = "v4.0.0-beta.2" }
|
2019-05-16 12:50:31 +03:00
|
|
|
|
2019-04-03 16:22:30 +03:00
|
|
|
# For bleeding edge
|
2020-06-04 19:21:49 +03:00
|
|
|
# grin_core = { git = "https://github.com/mimblewimble/grin", branch = "master" }
|
|
|
|
# grin_keychain = { git = "https://github.com/mimblewimble/grin", branch = "master" }
|
|
|
|
# grin_chain = { git = "https://github.com/mimblewimble/grin", branch = "master" }
|
|
|
|
# grin_util = { git = "https://github.com/mimblewimble/grin", branch = "master" }
|
|
|
|
# grin_api = { git = "https://github.com/mimblewimble/grin", branch = "master" }
|
|
|
|
# grin_store = { git = "https://github.com/mimblewimble/grin", branch = "master" }
|
2019-03-26 19:02:31 +03:00
|
|
|
|
|
|
|
# For local testing
|
2020-05-29 17:52:46 +03:00
|
|
|
# grin_core = { path = "../../grin/core"}
|
|
|
|
# grin_keychain = { path = "../../grin/keychain"}
|
|
|
|
# grin_chain = { path = "../../grin/chain"}
|
|
|
|
# grin_util = { path = "../../grin/util"}
|
|
|
|
# grin_api = { path = "../../grin/api"}
|
|
|
|
# grin_store = { path = "../../grin/store"}
|
2019-03-26 19:02:31 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2020-06-10 19:31:04 +03:00
|
|
|
pretty_assertions = "0.6"
|