mirror of
https://github.com/mimblewimble/grin-wallet.git
synced 2025-01-21 03:21:08 +03:00
b4eeb50c66
* udpate for beta release * initial tor explorations * rustfmt * basic tor tx send working * rustfmt * add tor proxy info to config file * rustfmt * add utilities to output tor hidden service configuration files * output tor config as part of listener startup * rustfmt * fully automate config and startup of tor process * rustfmt * remove unnecessary process kill commands from listener * rustfmt * assume defaults for tor sending config if section doesn't exist in grin-wallet.toml * rustfmt * ignore tor dev test * update default paths output by config, compilation + confirmed working on windows * rustfmt * fix on osx/unix * add timeout to tor connector, remove unwrap in client * allow specifiying tor address without 'http://[].onion' on the command line * fix api test * rustfmt * update address derivation path as per spec * rustfmt * move tor init to separate function * rustfmt * re-ignore tor dev test * listen on tor by default if tor available * rustfmt * test fix * remove explicit send via tor flag, and assume tor if address fits * rustfmt
53 lines
1.9 KiB
TOML
53 lines
1.9 KiB
TOML
[package]
|
|
name = "grin_wallet_util"
|
|
version = "3.0.0-alpha.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 = "v2.1.0-beta.3"}
|
|
# grin_keychain = { git = "https://github.com/mimblewimble/grin", tag = "v2.1.0-beta.3" }
|
|
# grin_chain = { git = "https://github.com/mimblewimble/grin", tag = "v2.1.0-beta.3" }
|
|
# grin_util = { git = "https://github.com/mimblewimble/grin", tag = "v2.1.0-beta.3" }
|
|
# grin_api = { git = "https://github.com/mimblewimble/grin", tag = "v2.1.0-beta.3" }
|
|
# grin_store = { git = "https://github.com/mimblewimble/grin", tag = "v2.1.0-beta.3" }
|
|
|
|
# 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"}
|
|
# grin_keychain = { path = "../../grin/keychain"}
|
|
# grin_chain = { path = "../../grin/chain"}
|
|
# grin_util = { path = "../../grin/util"}
|
|
# grin_api = { path = "../../grin/api"}
|
|
# grin_store = { path = "../../grin/store"}
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = "0.5.1"
|