2019-02-13 18:05:19 +03:00
|
|
|
[package]
|
|
|
|
name = "grin_wallet"
|
2023-08-03 14:40:04 +03:00
|
|
|
version = "5.2.0-beta.1"
|
2019-02-13 18:05:19 +03:00
|
|
|
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
|
|
|
|
description = "Simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
|
|
|
|
license = "Apache-2.0"
|
2019-04-03 19:03:25 +03:00
|
|
|
repository = "https://github.com/mimblewimble/grin-wallet"
|
2019-02-13 18:05:19 +03:00
|
|
|
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]
|
2019-03-26 19:02:31 +03:00
|
|
|
members = ["api", "config", "controller", "impls", "libwallet", "util"]
|
2019-02-27 16:14:36 +03:00
|
|
|
exclude = ["integration"]
|
2019-02-13 18:05:19 +03:00
|
|
|
|
|
|
|
[dependencies]
|
2020-06-10 19:31:04 +03:00
|
|
|
clap = { version = "2.33", features = ["yaml"] }
|
|
|
|
rpassword = "4.0"
|
2022-07-28 12:21:45 +03:00
|
|
|
thiserror = "1"
|
2023-03-13 16:49:13 +03:00
|
|
|
prettytable-rs = "0.10"
|
2019-02-13 18:05:19 +03:00
|
|
|
log = "0.4"
|
2020-06-10 19:31:04 +03:00
|
|
|
linefeed = "0.6"
|
|
|
|
semver = "0.10"
|
2020-02-06 12:08:24 +03:00
|
|
|
rustyline = "6"
|
|
|
|
lazy_static = "1"
|
2019-02-13 18:05:19 +03:00
|
|
|
|
2023-08-03 14:40:04 +03:00
|
|
|
grin_wallet_api = { path = "./api", version = "5.2.0-beta.1" }
|
|
|
|
grin_wallet_impls = { path = "./impls", version = "5.2.0-beta.1" }
|
|
|
|
grin_wallet_libwallet = { path = "./libwallet", version = "5.2.0-beta.1" }
|
|
|
|
grin_wallet_controller = { path = "./controller", version = "5.2.0-beta.1" }
|
|
|
|
grin_wallet_config = { path = "./config", version = "5.2.0-beta.1" }
|
|
|
|
grin_wallet_util = { path = "./util", version = "5.2.0-beta.1" }
|
2019-02-13 18:05:19 +03:00
|
|
|
|
2022-08-08 14:08:25 +03:00
|
|
|
|
|
|
|
##### Grin Imports
|
|
|
|
|
|
|
|
# For Release
|
|
|
|
#grin_core = "4.0.0"
|
|
|
|
#grin_keychain = "4.0.0"
|
|
|
|
#grin_util = "4.0.0"
|
|
|
|
#grin_api = "4.0.0"
|
|
|
|
|
|
|
|
# For beta release
|
|
|
|
|
2023-08-03 14:40:04 +03:00
|
|
|
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" }
|
2022-08-08 14:08:25 +03:00
|
|
|
|
|
|
|
# For bleeding edge
|
2023-08-03 14:40:04 +03:00
|
|
|
# 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" }
|
2022-08-08 14:08:25 +03:00
|
|
|
|
|
|
|
# For local testing
|
|
|
|
# grin_core = { path = "../grin/core"}
|
|
|
|
# grin_keychain = { path = "../grin/keychain"}
|
|
|
|
# grin_util = { path = "../grin/util"}
|
|
|
|
# grin_api = { path = "../grin/api"}
|
|
|
|
|
2023-08-03 14:40:04 +03:00
|
|
|
######
|
2022-08-08 14:08:25 +03:00
|
|
|
|
2019-02-13 18:05:19 +03:00
|
|
|
[build-dependencies]
|
2020-06-10 19:31:04 +03:00
|
|
|
built = { version = "0.4", features = ["git2"]}
|
2019-08-13 11:36:21 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2020-06-10 19:31:04 +03:00
|
|
|
url = "2.1"
|
2019-08-13 11:36:21 +03:00
|
|
|
serde = "1"
|
|
|
|
serde_derive = "1"
|
|
|
|
serde_json = "1"
|
2021-04-08 16:45:52 +03:00
|
|
|
remove_dir_all = "0.7"
|
2022-08-08 14:08:25 +03:00
|
|
|
easy-jsonrpc-mw = "0.5.4"
|