grin-wallet/util/Cargo.toml
Yeastplume f8c316a351
Store XORed wallet seed in-mem (#200)
* experimental xor token work

* rustfmt

* test implementation of build_coinbase_t function

* rustfmt

* add separate foreign_rpc_s interface for secure functions

* rustfmt

* rustfmt

* fix http scheme to allow https as well

* add tokenized owner API, modify all functions to use token

* rustfmt

* fix for api doctests, tests passing up to api crate

* rustfmt

* controller crate compilation

* rustfmt

* controller tests passing and modified some to use masked keychains

* rustfmt

* fix wallet tests

* rustfmt

* build from github

* rustfmt
2019-08-06 12:50:41 +01:00

52 lines
2.1 KiB
TOML

[package]
name = "grin_wallet_util"
version = "2.1.0-beta.1"
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
description = "Util, for generic utilities and to re-export grin crates"
license = "Apache-2.0"
repository = "https://github.com/mimblewimble/grin-wallet"
keywords = [ "crypto", "grin", "mimblewimble" ]
workspace = ".."
edition = "2018"
[dependencies]
rand = "0.5"
serde = "1"
serde_derive = "1"
toml = "0.4"
dirs = "1.0.3"
# For Release
# grin_core = "2.0.0"
# grin_keychain = "2.0.0"
# grin_chain = "2.0.0"
# grin_util = "2.0.0"
# grin_api = "2.0.0"
# grin_store = "2.0.0"
# For beta release
# grin_core = { git = "https://github.com/mimblewimble/grin", tag = "2.0.0-beta.2" }
# grin_keychain = { git = "https://github.com/mimblewimble/grin", tag = "2.0.0-beta.2" }
# grin_chain = { git = "https://github.com/mimblewimble/grin", tag = "2.0.0-beta.2" }
# grin_util = { git = "https://github.com/mimblewimble/grin", tag = "2.0.0-beta.2" }
# grin_api = { git = "https://github.com/mimblewimble/grin", tag = "2.0.0-beta.2" }
# grin_store = { git = "https://github.com/mimblewimble/grin", tag = "2.0.0-beta.2" }
# For bleeding edge
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" }
# For local testing
#grin_core = { path = "../../grin/core", version= "2.0.1-beta.1"}
#grin_keychain = { path = "../../grin/keychain", version= "2.0.1-beta.1"}
#grin_chain = { path = "../../grin/chain", version= "2.0.1-beta.1"}
#grin_util = { path = "../../grin/util", version= "2.0.1-beta.1"}
#grin_api = { path = "../../grin/api", version= "2.0.1-beta.1"}
#grin_store = { path = "../../grin/store", version= "2.0.1-beta.1"}
[dev-dependencies]
pretty_assertions = "0.5.1"