2019-03-26 19:02:31 +03:00
|
|
|
[package]
|
|
|
|
name = "grin_wallet_util"
|
Merge milestone/2.1.0 into master (#199)
* version bump for next potential release
* Merge master into milestone/2.1.0 (#182)
* Derive --version output dynamically from cargo package version (#174)
* add --txid to the `wallet txs` command (#176)
* add --txid to the `wallet txs` command
* add test for `wallet txs` command with `--txid` parameter
* Refactor - Split WalletCommAdapter into multiple traits (#180)
* Derive --version output dynamically from cargo package version (#174)
* add server auth argument to http client
* Revert "add server auth argument to http client"
This reverts commit f52a8d2c7cdfb8583af5716ad621eb560811d6ee.
* modify WalletCommAdapter, moving dest argument into fields on implementors,
visiting havok on automated tests, at least one of which is now out of date and failing
* Split WalletCommAdapter into four traits, one for each of its intended behaviors.
* Remove two vestigals
1. args, a stringly typed argument to put_tx
2. NullAdapter, which is no longer used
* Remove unused "params" argument from listen method.
* Re-add previously existing TODO comment
* Fix non-test build
* completely Fix non-test build
* Full Lifecycle API Support (#184)
* refactoring wallet lib traits
* rustfmt
* rustfmt
* add new files
* explicit lifetime specifiers on all wallet traits
* rustfmt
* modify apis to use new walletinst
* rustfmt
* converting controller crate
* rustfmt
* controller crate compiling
* rustfmt
* compilation
* rustfmt
* Remove config from wallet, implement open_wallet, close_wallet in lifecycle provider, remove password + open_with_credentials from WalletBackend + impl
* rustfmt
* full compilation, changing recovery + init to new model
* rustfmt
* wallet initialisation working, init command output and flow identical to v2.0.0 wallet
* rustfmt
* fix listener and owner api startup
* rustfmt
* rustfmt
* move encryption test
* rustfmt
* fix api doctests
* rustfmt
* fix for most tests in controller crate
* rustfmt
* fix for check tests in controller crate
* fix main wallet tests
* rustfmt
* add explicit functions to handle mnemonic recovery, fix CLI recovery workflow
* rustfmt
* update keybase adapter to use new wallet format
* rustfmt
* test fix
* remove debug output
2019-07-29 15:25:03 +03:00
|
|
|
version = "2.1.0-beta.1"
|
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]
|
|
|
|
rand = "0.5"
|
|
|
|
serde = "1"
|
|
|
|
serde_derive = "1"
|
|
|
|
toml = "0.4"
|
|
|
|
dirs = "1.0.3"
|
|
|
|
|
2019-04-03 16:22:30 +03:00
|
|
|
# For Release
|
2019-07-01 16:44:22 +03:00
|
|
|
# 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"
|
2019-04-03 16:22:30 +03:00
|
|
|
|
2019-05-16 12:50:31 +03:00
|
|
|
# For beta release
|
2019-08-01 16:50:31 +03:00
|
|
|
# grin_core = { git = "https://github.com/mimblewimble/grin", tag = "2.0.1-beta.1" }
|
|
|
|
# grin_keychain = { git = "https://github.com/mimblewimble/grin", tag = "2.0.1-beta.1" }
|
|
|
|
# grin_chain = { git = "https://github.com/mimblewimble/grin", tag = "2.0.1-beta.1" }
|
|
|
|
# grin_util = { git = "https://github.com/mimblewimble/grin", tag = "2.0.1-beta.1" }
|
|
|
|
# grin_api = { git = "https://github.com/mimblewimble/grin", tag = "2.0.1-beta.1" }
|
|
|
|
# grin_store = { git = "https://github.com/mimblewimble/grin", tag = "2.0.1-beta.1" }
|
2019-05-16 12:50:31 +03:00
|
|
|
|
2019-04-03 16:22:30 +03:00
|
|
|
# For bleeding edge
|
2019-08-01 16:50:31 +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
|
2019-08-01 16:50:31 +03:00
|
|
|
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"}
|
2019-03-26 19:02:31 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
pretty_assertions = "0.5.1"
|