mirror of
https://github.com/mimblewimble/grin-wallet.git
synced 2025-01-20 19:11:09 +03:00
35f83e80fa
This reverts commit 3d6f4b8437
.
79 lines
No EOL
2.4 KiB
TOML
79 lines
No EOL
2.4 KiB
TOML
[package]
|
|
name = "grin_wallet"
|
|
version = "5.3.0"
|
|
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
|
|
description = "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" ]
|
|
readme = "README.md"
|
|
exclude = ["**/*.grin", "**/*.grin2"]
|
|
build = "src/build/build.rs"
|
|
edition = "2018"
|
|
|
|
[[bin]]
|
|
name = "grin-wallet"
|
|
path = "src/bin/grin-wallet.rs"
|
|
|
|
[workspace]
|
|
members = ["api", "config", "controller", "impls", "libwallet", "util"]
|
|
exclude = ["integration"]
|
|
|
|
[dependencies]
|
|
clap = { version = "2.33", features = ["yaml"] }
|
|
rpassword = "4.0"
|
|
thiserror = "1"
|
|
prettytable-rs = "0.10"
|
|
log = "0.4"
|
|
linefeed = "0.6"
|
|
semver = "0.10"
|
|
rustyline = "6"
|
|
lazy_static = "1"
|
|
|
|
grin_wallet_api = { path = "./api", version = "5.3.0" }
|
|
grin_wallet_impls = { path = "./impls", version = "5.3.0" }
|
|
grin_wallet_libwallet = { path = "./libwallet", version = "5.3.0" }
|
|
grin_wallet_controller = { path = "./controller", version = "5.3.0" }
|
|
grin_wallet_config = { path = "./config", version = "5.3.0" }
|
|
grin_wallet_util = { path = "./util", version = "5.3.0" }
|
|
|
|
|
|
##### Grin Imports
|
|
|
|
# For Release
|
|
grin_core = "5.3.0"
|
|
grin_keychain = "5.3.0"
|
|
grin_util = "5.3.0"
|
|
grin_api = "5.3.0"
|
|
|
|
# For beta release
|
|
|
|
# grin_core = { git = "https://github.com/mimblewimble/grin", tag = "v5.2.0-beta.3"}
|
|
# grin_keychain = { 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" }
|
|
# grin_api = { git = "https://github.com/mimblewimble/grin", tag = "v5.2.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_util = { git = "https://github.com/mimblewimble/grin", branch = "master" }
|
|
# grin_api = { git = "https://github.com/mimblewimble/grin", branch = "master" }
|
|
|
|
# For local testing
|
|
# grin_core = { path = "../grin/core"}
|
|
# grin_keychain = { path = "../grin/keychain"}
|
|
# grin_util = { path = "../grin/util"}
|
|
# grin_api = { path = "../grin/api"}
|
|
|
|
######
|
|
|
|
[build-dependencies]
|
|
built = { version = "0.4", features = ["git2"]}
|
|
|
|
[dev-dependencies]
|
|
url = "2.1"
|
|
serde = "1"
|
|
serde_derive = "1"
|
|
serde_json = "1"
|
|
remove_dir_all = "0.7"
|
|
easy-jsonrpc-mw = "0.5.4" |