mirror of
https://github.com/mimblewimble/grin-wallet.git
synced 2025-01-20 19:11:09 +03:00
c40e8a915b
* 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 f52a8d2c7c
.
* 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
40 lines
1.2 KiB
TOML
40 lines
1.2 KiB
TOML
[package]
|
|
name = "grin_wallet_controller"
|
|
version = "2.1.0-beta.1"
|
|
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
|
|
description = "Controllers for grin wallet instantiation"
|
|
license = "Apache-2.0"
|
|
repository = "https://github.com/mimblewimble/grin-wallet"
|
|
keywords = [ "crypto", "grin", "mimblewimble" ]
|
|
exclude = ["**/*.grin", "**/*.grin2"]
|
|
#build = "src/build/build.rs"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
failure = "0.1"
|
|
failure_derive = "0.1"
|
|
futures = "0.1"
|
|
hyper = "0.12"
|
|
rand = "0.5"
|
|
serde = "1"
|
|
serde_derive = "1"
|
|
serde_json = "1"
|
|
log = "0.4"
|
|
prettytable-rs = "0.7"
|
|
ring = "0.13"
|
|
term = "0.5"
|
|
tokio = "= 0.1.11"
|
|
tokio-core = "0.1"
|
|
tokio-retry = "0.1"
|
|
uuid = { version = "0.7", features = ["serde", "v4"] }
|
|
url = "1.7.0"
|
|
chrono = { version = "0.4.4", features = ["serde"] }
|
|
easy-jsonrpc = "0.5.1"
|
|
lazy_static = "1"
|
|
|
|
grin_wallet_util = { path = "../util", version = "2.1.0-beta.1" }
|
|
|
|
grin_wallet_api = { path = "../api", version = "2.1.0-beta.1" }
|
|
grin_wallet_impls = { path = "../impls", version = "2.1.0-beta.1" }
|
|
grin_wallet_libwallet = { path = "../libwallet", version = "2.1.0-beta.1" }
|
|
grin_wallet_config = { path = "../config", version = "2.1.0-beta.1" }
|