mirror of
https://github.com/mimblewimble/grin-wallet.git
synced 2025-01-21 03:21:08 +03:00
update for development version (#234)
This commit is contained in:
parent
0f2d8f8c6b
commit
e02b5d9b20
8 changed files with 264 additions and 262 deletions
446
Cargo.lock
generated
446
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
14
Cargo.toml
14
Cargo.toml
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "grin_wallet"
|
name = "grin_wallet"
|
||||||
version = "2.1.0-beta.3"
|
version = "3.0.0-alpha.1"
|
||||||
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
|
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
|
||||||
description = "Simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
|
description = "Simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
|
||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
|
@ -30,13 +30,13 @@ log = "0.4"
|
||||||
linefeed = "0.5"
|
linefeed = "0.5"
|
||||||
semver = "0.9"
|
semver = "0.9"
|
||||||
|
|
||||||
grin_wallet_api = { path = "./api", version = "2.1.0-beta.3" }
|
grin_wallet_api = { path = "./api", version = "3.0.0-alpha.1" }
|
||||||
grin_wallet_impls = { path = "./impls", version = "2.1.0-beta.3" }
|
grin_wallet_impls = { path = "./impls", version = "3.0.0-alpha.1" }
|
||||||
grin_wallet_libwallet = { path = "./libwallet", version = "2.1.0-beta.3" }
|
grin_wallet_libwallet = { path = "./libwallet", version = "3.0.0-alpha.1" }
|
||||||
grin_wallet_controller = { path = "./controller", version = "2.1.0-beta.3" }
|
grin_wallet_controller = { path = "./controller", version = "3.0.0-alpha.1" }
|
||||||
grin_wallet_config = { path = "./config", version = "2.1.0-beta.3" }
|
grin_wallet_config = { path = "./config", version = "3.0.0-alpha.1" }
|
||||||
|
|
||||||
grin_wallet_util = { path = "./util", version = "2.1.0-beta.3" }
|
grin_wallet_util = { path = "./util", version = "3.0.0-alpha.1" }
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
built = "0.3"
|
built = "0.3"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "grin_wallet_api"
|
name = "grin_wallet_api"
|
||||||
version = "2.1.0-beta.3"
|
version = "3.0.0-alpha.1"
|
||||||
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
|
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
|
||||||
description = "Grin Wallet API"
|
description = "Grin Wallet API"
|
||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
|
@ -23,10 +23,10 @@ chrono = { version = "0.4.4", features = ["serde"] }
|
||||||
ring = "0.13"
|
ring = "0.13"
|
||||||
base64 = "0.9"
|
base64 = "0.9"
|
||||||
|
|
||||||
grin_wallet_libwallet = { path = "../libwallet", version = "2.1.0-beta.3" }
|
grin_wallet_libwallet = { path = "../libwallet", version = "3.0.0-alpha.1" }
|
||||||
grin_wallet_config = { path = "../config", version = "2.1.0-beta.3" }
|
grin_wallet_config = { path = "../config", version = "3.0.0-alpha.1" }
|
||||||
grin_wallet_impls = { path = "../impls", version = "2.1.0-beta.3" }
|
grin_wallet_impls = { path = "../impls", version = "3.0.0-alpha.1" }
|
||||||
grin_wallet_util = { path = "../util", version = "2.1.0-beta.3" }
|
grin_wallet_util = { path = "../util", version = "3.0.0-alpha.1" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
serde_json = "1"
|
serde_json = "1"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "grin_wallet_config"
|
name = "grin_wallet_config"
|
||||||
version = "2.1.0-beta.3"
|
version = "3.0.0-alpha.1"
|
||||||
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
|
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
|
||||||
description = "Configuration for grin wallet , a simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
|
description = "Configuration for grin wallet , a simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
|
||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
|
@ -16,7 +16,7 @@ serde_derive = "1"
|
||||||
toml = "0.4"
|
toml = "0.4"
|
||||||
dirs = "1.0.3"
|
dirs = "1.0.3"
|
||||||
|
|
||||||
grin_wallet_util = { path = "../util", version = "2.1.0-beta.3" }
|
grin_wallet_util = { path = "../util", version = "3.0.0-alpha.1" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
pretty_assertions = "0.5.1"
|
pretty_assertions = "0.5.1"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "grin_wallet_controller"
|
name = "grin_wallet_controller"
|
||||||
version = "2.1.0-beta.3"
|
version = "3.0.0-alpha.1"
|
||||||
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
|
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
|
||||||
description = "Controllers for grin wallet instantiation"
|
description = "Controllers for grin wallet instantiation"
|
||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
|
@ -32,9 +32,9 @@ chrono = { version = "0.4.4", features = ["serde"] }
|
||||||
easy-jsonrpc-mw = "0.5.3"
|
easy-jsonrpc-mw = "0.5.3"
|
||||||
lazy_static = "1"
|
lazy_static = "1"
|
||||||
|
|
||||||
grin_wallet_util = { path = "../util", version = "2.1.0-beta.3" }
|
grin_wallet_util = { path = "../util", version = "3.0.0-alpha.1" }
|
||||||
|
|
||||||
grin_wallet_api = { path = "../api", version = "2.1.0-beta.3" }
|
grin_wallet_api = { path = "../api", version = "3.0.0-alpha.1" }
|
||||||
grin_wallet_impls = { path = "../impls", version = "2.1.0-beta.3" }
|
grin_wallet_impls = { path = "../impls", version = "3.0.0-alpha.1" }
|
||||||
grin_wallet_libwallet = { path = "../libwallet", version = "2.1.0-beta.3" }
|
grin_wallet_libwallet = { path = "../libwallet", version = "3.0.0-alpha.1" }
|
||||||
grin_wallet_config = { path = "../config", version = "2.1.0-beta.3" }
|
grin_wallet_config = { path = "../config", version = "3.0.0-alpha.1" }
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "grin_wallet_impls"
|
name = "grin_wallet_impls"
|
||||||
version = "2.1.0-beta.3"
|
version = "3.0.0-alpha.1"
|
||||||
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
|
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
|
||||||
description = "Concrete types derived from libwallet traits"
|
description = "Concrete types derived from libwallet traits"
|
||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
|
@ -28,6 +28,6 @@ uuid = { version = "0.7", features = ["serde", "v4"] }
|
||||||
chrono = { version = "0.4.4", features = ["serde"] }
|
chrono = { version = "0.4.4", features = ["serde"] }
|
||||||
url = "1.7.2"
|
url = "1.7.2"
|
||||||
|
|
||||||
grin_wallet_util = { path = "../util", version = "2.1.0-beta.3" }
|
grin_wallet_util = { path = "../util", version = "3.0.0-alpha.1" }
|
||||||
grin_wallet_config = { path = "../config", version = "2.1.0-beta.3" }
|
grin_wallet_config = { path = "../config", version = "3.0.0-alpha.1" }
|
||||||
grin_wallet_libwallet = { path = "../libwallet", version = "2.1.0-beta.3" }
|
grin_wallet_libwallet = { path = "../libwallet", version = "3.0.0-alpha.1" }
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "grin_wallet_libwallet"
|
name = "grin_wallet_libwallet"
|
||||||
version = "2.1.0-beta.3"
|
version = "3.0.0-alpha.1"
|
||||||
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
|
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
|
||||||
description = "Simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
|
description = "Simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
|
||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
|
@ -25,5 +25,5 @@ lazy_static = "1"
|
||||||
strum = "0.15"
|
strum = "0.15"
|
||||||
strum_macros = "0.15"
|
strum_macros = "0.15"
|
||||||
|
|
||||||
grin_wallet_util = { path = "../util", version = "2.1.0-beta.3" }
|
grin_wallet_util = { path = "../util", version = "3.0.0-alpha.1" }
|
||||||
grin_wallet_config = { path = "../config", version = "2.1.0-beta.3" }
|
grin_wallet_config = { path = "../config", version = "3.0.0-alpha.1" }
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "grin_wallet_util"
|
name = "grin_wallet_util"
|
||||||
version = "2.1.0-beta.3"
|
version = "3.0.0-alpha.1"
|
||||||
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
|
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
|
||||||
description = "Util, for generic utilities and to re-export grin crates"
|
description = "Util, for generic utilities and to re-export grin crates"
|
||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
|
@ -25,20 +25,20 @@ dirs = "1.0.3"
|
||||||
# grin_store = "2.0.0"
|
# grin_store = "2.0.0"
|
||||||
|
|
||||||
# For beta release
|
# For beta release
|
||||||
grin_core = { git = "https://github.com/mimblewimble/grin", tag = "v2.1.0-beta.3"}
|
# 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_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_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_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_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" }
|
# grin_store = { git = "https://github.com/mimblewimble/grin", tag = "v2.1.0-beta.3" }
|
||||||
|
|
||||||
# For bleeding edge
|
# For bleeding edge
|
||||||
# grin_core = { git = "https://github.com/mimblewimble/grin", branch = "master" }
|
grin_core = { git = "https://github.com/mimblewimble/grin", branch = "master" }
|
||||||
# grin_keychain = { 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_chain = { git = "https://github.com/mimblewimble/grin", branch = "master" }
|
||||||
# grin_util = { 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_api = { git = "https://github.com/mimblewimble/grin", branch = "master" }
|
||||||
# grin_store = { git = "https://github.com/mimblewimble/grin", branch = "master" }
|
grin_store = { git = "https://github.com/mimblewimble/grin", branch = "master" }
|
||||||
|
|
||||||
# For local testing
|
# For local testing
|
||||||
# grin_core = { path = "../../grin/core"}
|
# grin_core = { path = "../../grin/core"}
|
||||||
|
|
Loading…
Reference in a new issue