mirror of
https://github.com/mimblewimble/grin-wallet.git
synced 2025-01-21 03:21:08 +03:00
36 lines
1.4 KiB
TOML
36 lines
1.4 KiB
TOML
|
[package]
|
||
|
name = "grin_wallet_util"
|
||
|
version = "1.1.0"
|
||
|
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"
|
||
|
keywords = [ "crypto", "grin", "mimblewimble" ]
|
||
|
workspace = ".."
|
||
|
edition = "2018"
|
||
|
|
||
|
[dependencies]
|
||
|
rand = "0.5"
|
||
|
serde = "1"
|
||
|
serde_derive = "1"
|
||
|
toml = "0.4"
|
||
|
dirs = "1.0.3"
|
||
|
|
||
|
grin_core = { git = "https://github.com/mimblewimble/grin", branch = "milestone/1.1.0" }
|
||
|
grin_keychain = { git = "https://github.com/mimblewimble/grin", branch = "milestone/1.1.0" }
|
||
|
grin_chain = { git = "https://github.com/mimblewimble/grin", branch = "milestone/1.1.0" }
|
||
|
grin_util = { git = "https://github.com/mimblewimble/grin", branch = "milestone/1.1.0" }
|
||
|
grin_api = { git = "https://github.com/mimblewimble/grin", branch = "milestone/1.1.0" }
|
||
|
grin_store = { git = "https://github.com/mimblewimble/grin", branch = "milestone/1.1.0" }
|
||
|
|
||
|
# For local testing
|
||
|
#grin_core = { path = "../../grin/core", version= "1.1.0"}
|
||
|
#grin_keychain = { path = "../../grin/keychain", version= "1.1.0"}
|
||
|
#grin_chain = { path = "../../grin/chain", version= "1.1.0"}
|
||
|
#grin_util = { path = "../../grin/util", version= "1.1.0"}
|
||
|
#grin_api = { path = "../../grin/api", version= "1.1.0"}
|
||
|
#grin_store = { path = "../../grin/store", version= "1.1.0"}
|
||
|
|
||
|
[dev-dependencies]
|
||
|
pretty_assertions = "0.5.1"
|