mirror of
https://github.com/mimblewimble/grin-wallet.git
synced 2025-01-21 03:21:08 +03:00
64e8c48c35
* create 2.0.0 branch * V0/V1 Slate Removal + Grin Header Version Bump (#140) * Remove V0 and V1 Slates from Wallet * rustfmt * V1 API + V2 wallet to wallet impl (#144) * remove v1 API * rustfmt * convert http adapter to use V2 api * rustfmt * V2 API conversion Pt2 - Check version (#146) * call check_version on wallet before http send * rustfmt * Support new Bulletproof rewind scheme (#122) * Restore with LegacyProofBuilder * Switch to ProofBuilder at HF block * Switch proof builder for coinbase outputs at hard fork * Use valid_header_version to switch proof builder * Fix compilation errors * Use legacy proof builder for AutomatedTesting chain type * Add macro to avoid duplicate code * Read version info from server, react accordingly (#154) * read and parse version, bump hf * rustfmt * add foreign api middleware check * rustfmt * add middleware checks * rustfmt * add check for incoming pre-hf slates * api tests * Add double rewind period (#155) * Add double rewind period * Simplify restore * Fix comment * bump imported version for beta release * version bump for next (potential) release * Provide more specific error when other wallet is outdated (#162) * add appropriate error message when other wallet is out of date * rustfmt * missing cargo.lock
52 lines
2.1 KiB
TOML
52 lines
2.1 KiB
TOML
[package]
|
|
name = "grin_wallet_util"
|
|
version = "2.0.0-beta.2"
|
|
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.0-beta.2"}
|
|
#grin_keychain = { path = "../../grin/keychain", version= "2.0.0-beta.2"}
|
|
#grin_chain = { path = "../../grin/chain", version= "2.0.0-beta.2"}
|
|
#grin_util = { path = "../../grin/util", version= "2.0.0-beta.2"}
|
|
#grin_api = { path = "../../grin/api", version= "2.0.0-beta.2"}
|
|
#grin_store = { path = "../../grin/store", version= "2.0.0-beta.2"}
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = "0.5.1"
|