diff --git a/Cargo.lock b/Cargo.lock index d933b0e1e..ba49fee56 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2247,7 +2247,7 @@ dependencies = [ [[package]] name = "grin_wallet_api" -version = "5.3.1" +version = "5.3.2" dependencies = [ "base64 0.12.3", "chrono", @@ -2271,7 +2271,7 @@ dependencies = [ [[package]] name = "grin_wallet_config" -version = "5.3.1" +version = "5.3.2" dependencies = [ "dirs 2.0.2", "grin_wallet_util", @@ -2285,7 +2285,7 @@ dependencies = [ [[package]] name = "grin_wallet_controller" -version = "5.3.1" +version = "5.3.2" dependencies = [ "chrono", "colored", @@ -2320,7 +2320,7 @@ dependencies = [ [[package]] name = "grin_wallet_impls" -version = "5.3.1" +version = "5.3.2" dependencies = [ "base64 0.12.3", "blake2-rfc", @@ -2355,7 +2355,7 @@ dependencies = [ [[package]] name = "grin_wallet_libwallet" -version = "5.3.1" +version = "5.3.2" dependencies = [ "base64 0.12.3", "bch", @@ -2414,7 +2414,7 @@ dependencies = [ [[package]] name = "grin_wallet_util" -version = "5.3.1" +version = "5.3.2" dependencies = [ "data-encoding", "ed25519-dalek", @@ -3601,7 +3601,7 @@ dependencies = [ [[package]] name = "mwc_wallet" -version = "5.3.1" +version = "5.3.2" dependencies = [ "built", "clap", diff --git a/Cargo.toml b/Cargo.toml index 5b3e9b3e6..51071e180 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mwc_wallet" -version = "5.3.1" +version = "5.3.2" authors = ["Grin Developers "] description = "Simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format." license = "Apache-2.0" @@ -36,12 +36,12 @@ funty = "=1.1.0" uuid = { version = "0.8", features = ["serde", "v4"] } shlex = "1.3.0" -grin_wallet_api = { path = "./api", version = "5.3.1" } -grin_wallet_impls = { path = "./impls", version = "5.3.1" } -grin_wallet_libwallet = { path = "./libwallet", version = "5.3.1" } -grin_wallet_controller = { path = "./controller", version = "5.3.1" } -grin_wallet_config = { path = "./config", version = "5.3.1" } -grin_wallet_util = { path = "./util", version = "5.3.1" } +grin_wallet_api = { path = "./api", version = "5.3.2" } +grin_wallet_impls = { path = "./impls", version = "5.3.2" } +grin_wallet_libwallet = { path = "./libwallet", version = "5.3.2" } +grin_wallet_controller = { path = "./controller", version = "5.3.2" } +grin_wallet_config = { path = "./config", version = "5.3.2" } +grin_wallet_util = { path = "./util", version = "5.3.2" } [build-dependencies] built = { version = "0.4", features = ["git2"]} diff --git a/api/Cargo.toml b/api/Cargo.toml index c1c6a689b..7647562ae 100644 --- a/api/Cargo.toml +++ b/api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "grin_wallet_api" -version = "5.3.1" +version = "5.3.2" authors = ["Grin Developers "] description = "Grin Wallet API" license = "Apache-2.0" @@ -24,10 +24,10 @@ ed25519-dalek = "1.0.0-pre.4" colored = "1.6" x25519-dalek = "0.6" -grin_wallet_libwallet = { path = "../libwallet", version = "5.3.1" } -grin_wallet_config = { path = "../config", version = "5.3.1" } -grin_wallet_impls = { path = "../impls", version = "5.3.1" } -grin_wallet_util = { path = "../util", version = "5.3.1" } +grin_wallet_libwallet = { path = "../libwallet", version = "5.3.2" } +grin_wallet_config = { path = "../config", version = "5.3.2" } +grin_wallet_impls = { path = "../impls", version = "5.3.2" } +grin_wallet_util = { path = "../util", version = "5.3.2" } [dev-dependencies] serde_json = "1" diff --git a/config/Cargo.toml b/config/Cargo.toml index e640ebc24..826a8d1e3 100644 --- a/config/Cargo.toml +++ b/config/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "grin_wallet_config" -version = "5.3.1" +version = "5.3.2" authors = ["Grin Developers "] description = "Configuration for grin wallet , a simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format." license = "Apache-2.0" @@ -17,7 +17,7 @@ toml = "0.5" serde_derive = "1" thiserror = "1" -grin_wallet_util = { path = "../util", version = "5.3.1" } +grin_wallet_util = { path = "../util", version = "5.3.2" } [dev-dependencies] pretty_assertions = "0.6" diff --git a/controller/Cargo.toml b/controller/Cargo.toml index 5f7ade226..5d0a17ed8 100644 --- a/controller/Cargo.toml +++ b/controller/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "grin_wallet_controller" -version = "5.3.1" +version = "5.3.2" authors = ["Grin Developers "] description = "Controllers for grin wallet instantiation" license = "Apache-2.0" @@ -36,11 +36,11 @@ wagyu-ethereum = { git = "https://github.com/mwcproject/wagyu-ethereum", branch libp2p = { git = "https://github.com/mwcproject/rust-libp2p", branch = "master", default-features = false, features = [ "noise", "yamux", "mplex", "dns", "tcp-tokio", "ping", "gossipsub"] } #libp2p = { path = "../../rust-libp2p", default-features = false, features = [ "noise", "yamux", "mplex", "dns", "tcp-tokio", "ping", "gossipsub"] } -grin_wallet_util = { path = "../util", version = "5.3.1" } -grin_wallet_api = { path = "../api", version = "5.3.1" } -grin_wallet_impls = { path = "../impls", version = "5.3.1" } -grin_wallet_libwallet = { path = "../libwallet", version = "5.3.1" } -grin_wallet_config = { path = "../config", version = "5.3.1" } +grin_wallet_util = { path = "../util", version = "5.3.2" } +grin_wallet_api = { path = "../api", version = "5.3.2" } +grin_wallet_impls = { path = "../impls", version = "5.3.2" } +grin_wallet_libwallet = { path = "../libwallet", version = "5.3.2" } +grin_wallet_config = { path = "../config", version = "5.3.2" } [dev-dependencies] remove_dir_all = "0.7" diff --git a/impls/Cargo.toml b/impls/Cargo.toml index 537e46a4c..1fbf79843 100644 --- a/impls/Cargo.toml +++ b/impls/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "grin_wallet_impls" -version = "5.3.1" +version = "5.3.2" authors = ["Grin Developers "] description = "Concrete types derived from libwallet traits" license = "Apache-2.0" @@ -41,9 +41,9 @@ url = "2.1" libp2p = { git = "https://github.com/mwcproject/rust-libp2p", branch = "master", default-features = false, features = [ "noise", "yamux", "mplex", "dns", "tcp-tokio", "ping", "gossipsub"] } #libp2p = { path = "../../rust-libp2p", default-features = false, features = [ "noise", "yamux", "mplex", "dns", "tcp-tokio", "ping", "gossipsub"] } -grin_wallet_util = { path = "../util", version = "5.3.1" } -grin_wallet_config = { path = "../config", version = "5.3.1" } -grin_wallet_libwallet = { path = "../libwallet", version = "5.3.1" } +grin_wallet_util = { path = "../util", version = "5.3.2" } +grin_wallet_config = { path = "../config", version = "5.3.2" } +grin_wallet_libwallet = { path = "../libwallet", version = "5.3.2" } [dev-dependencies] "remove_dir_all" = "0.7" diff --git a/libwallet/Cargo.toml b/libwallet/Cargo.toml index c5ca31f37..7cd9a0c0c 100644 --- a/libwallet/Cargo.toml +++ b/libwallet/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "grin_wallet_libwallet" -version = "5.3.1" +version = "5.3.2" authors = ["Grin Developers "] description = "Simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format." license = "Apache-2.0" @@ -70,8 +70,8 @@ zcash_primitives = { version = "0.4.0", git = "https://github.com/mwcproject/lib #zcash_primitives = { path = "../../librustzcash/zcash_primitives", features = ["transparent-inputs"] } -grin_wallet_util = { path = "../util", version = "5.3.1" } -grin_wallet_config = { path = "../config", version = "5.3.1" } +grin_wallet_util = { path = "../util", version = "5.3.2" } +grin_wallet_config = { path = "../config", version = "5.3.2" } [target.'cfg(any(target_os = "android", target_os = "linux"))'.dependencies] libc = { version = "0.2.69", default-features = false } diff --git a/util/Cargo.toml b/util/Cargo.toml index f0b8ff71b..c2fa4ecea 100644 --- a/util/Cargo.toml +++ b/util/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "grin_wallet_util" -version = "5.3.1" +version = "5.3.2" authors = ["Grin Developers "] description = "Util, for generic utilities and to re-export grin crates" license = "Apache-2.0"