grin-wallet/util/Cargo.toml

54 lines
1.9 KiB
TOML
Raw Normal View History

[package]
name = "grin_wallet_util"
2019-12-20 14:23:11 +03:00
version = "3.1.0-beta.1"
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
description = "Util, for generic utilities and to re-export grin crates"
license = "Apache-2.0"
2019-04-03 19:03:25 +03:00
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
2019-12-20 14:23:11 +03:00
# grin_core = { git = "https://github.com/mimblewimble/grin", tag = "v3.0.0-beta.3"}
# grin_keychain = { git = "https://github.com/mimblewimble/grin", tag = "v3.0.0-beta.3" }
# grin_chain = { git = "https://github.com/mimblewimble/grin", tag = "v3.0.0-beta.3" }
# grin_util = { git = "https://github.com/mimblewimble/grin", tag = "v3.0.0-beta.3" }
# grin_api = { git = "https://github.com/mimblewimble/grin", tag = "v3.0.0-beta.3" }
# grin_store = { git = "https://github.com/mimblewimble/grin", tag = "v3.0.0-beta.3" }
# For bleeding edge
2019-12-20 14:23:11 +03:00
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"