06ab92a619
* wallet: update lmdb from store crate, migrate single backend from trait to struct, update tests cargo deps and design doc * backend: do not panic on iter and directory creation * return iterator errors * build: update to last node revision * fix: height selection for scan, remove unused mutability for wallet * wallet: remove unused mutability conversion * tx: store slate state at database * build: cargo fmt * fix: do not return error when slate not found on tx slate state update * lmdb: do not collect all tx log records at iterator, show read errors at log * fix: save slate state, return error if slate not found * tx: specify amount of bad txs on slate state update error --------- Co-authored-by: Joerg <wiesche89@googlemail.com>
45 lines
1.2 KiB
TOML
45 lines
1.2 KiB
TOML
[package]
|
|
name = "grin_wallet_config"
|
|
version = "5.4.0-alpha.1"
|
|
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
|
|
description = "Configuration for grin wallet , a simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
|
|
license = "Apache-2.0"
|
|
repository = "https://github.com/mimblewimble/grin-wallet"
|
|
keywords = [ "crypto", "grin", "mimblewimble" ]
|
|
workspace = ".."
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
rand = "0.6"
|
|
serde = "1"
|
|
serde_derive = "1"
|
|
toml = "0.5"
|
|
dirs = "2.0"
|
|
|
|
grin_wallet_util = { path = "../util", version = "5.4.0-alpha.1" }
|
|
|
|
##### Grin Imports
|
|
|
|
# For Release
|
|
#grin_core = "5.4.0"
|
|
#grin_util = "5.4.0"
|
|
|
|
# For beta release
|
|
|
|
#grin_core = { git = "https://github.com/mimblewimble/grin", tag = "v5.2.0-beta.3"}
|
|
#grin_util = { git = "https://github.com/mimblewimble/grin", tag = "v5.2.0-beta.3" }
|
|
|
|
# For bleeding edge
|
|
grin_core = { git = "https://github.com/mimblewimble/grin", rev = "cf2ed3f3becd62b5e754ec964fd90e332b9a021f" }
|
|
grin_util = { git = "https://github.com/mimblewimble/grin", rev = "cf2ed3f3becd62b5e754ec964fd90e332b9a021f" }
|
|
|
|
# For local testing
|
|
# grin_core = { path = "../../grin/core"}
|
|
# grin_util = { path = "../../grin/util"}
|
|
|
|
#####
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = "0.6"
|
|
|