diff --git a/Cargo.lock b/Cargo.lock index 0c0883ca1..6b8627dcf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2338,7 +2338,7 @@ dependencies = [ [[package]] name = "mwc" -version = "5.3.3" +version = "5.3.4" dependencies = [ "blake2-rfc", "built", @@ -2586,7 +2586,7 @@ dependencies = [ [[package]] name = "mwc_api" -version = "5.3.3" +version = "5.3.4" dependencies = [ "bytes 0.5.6", "chrono", @@ -2619,7 +2619,7 @@ dependencies = [ [[package]] name = "mwc_chain" -version = "5.3.3" +version = "5.3.4" dependencies = [ "bit-vec", "bitflags 1.3.2", @@ -2643,7 +2643,7 @@ dependencies = [ [[package]] name = "mwc_config" -version = "5.3.3" +version = "5.3.4" dependencies = [ "dirs 2.0.2", "mwc_core", @@ -2660,7 +2660,7 @@ dependencies = [ [[package]] name = "mwc_core" -version = "5.3.3" +version = "5.3.4" dependencies = [ "blake2-rfc", "byteorder", @@ -2686,7 +2686,7 @@ dependencies = [ [[package]] name = "mwc_keychain" -version = "5.3.3" +version = "5.3.4" dependencies = [ "blake2-rfc", "byteorder", @@ -2708,7 +2708,7 @@ dependencies = [ [[package]] name = "mwc_p2p" -version = "5.3.3" +version = "5.3.4" dependencies = [ "async-std", "bitflags 1.3.2", @@ -2742,7 +2742,7 @@ dependencies = [ [[package]] name = "mwc_pool" -version = "5.3.3" +version = "5.3.4" dependencies = [ "blake2-rfc", "chrono", @@ -2761,7 +2761,7 @@ dependencies = [ [[package]] name = "mwc_secp256k1zkp" version = "0.7.15" -source = "git+https://github.com/mwcproject/rust-secp256k1-zkp?tag=0.7.15#80c023480bd919125a956605b7ede711fd60c470" +source = "git+https://github.com/mwcproject/rust-secp256k1-zkp?tag=0.7.15#729b97ab3f6eba72366e02c98fe71b36d22f8c9d" dependencies = [ "arrayvec 0.7.6", "cc", @@ -2774,7 +2774,7 @@ dependencies = [ [[package]] name = "mwc_servers" -version = "5.3.3" +version = "5.3.4" dependencies = [ "atomic_float", "chrono", @@ -2811,7 +2811,7 @@ dependencies = [ [[package]] name = "mwc_store" -version = "5.3.3" +version = "5.3.4" dependencies = [ "byteorder", "chrono", @@ -2833,7 +2833,7 @@ dependencies = [ [[package]] name = "mwc_util" -version = "5.3.3" +version = "5.3.4" dependencies = [ "backtrace", "base64 0.12.3", diff --git a/Cargo.toml b/Cargo.toml index 7094fddf7..74cf08d4d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mwc" -version = "5.3.3" +version = "5.3.4" authors = ["Mwc Developers "] description = "Simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format." license = "Apache-2.0" @@ -33,14 +33,14 @@ log = "0.4" term = "0.6" thiserror = "1" -mwc_api = { path = "./api", version = "5.3.3" } -mwc_config = { path = "./config", version = "5.3.3" } -mwc_chain = { path = "./chain", version = "5.3.3" } -mwc_core = { path = "./core", version = "5.3.3" } -mwc_keychain = { path = "./keychain", version = "5.3.3" } -mwc_p2p = { path = "./p2p", version = "5.3.3" } -mwc_servers = { path = "./servers", version = "5.3.3" } -mwc_util = { path = "./util", version = "5.3.3" } +mwc_api = { path = "./api", version = "5.3.4" } +mwc_config = { path = "./config", version = "5.3.4" } +mwc_chain = { path = "./chain", version = "5.3.4" } +mwc_core = { path = "./core", version = "5.3.4" } +mwc_keychain = { path = "./keychain", version = "5.3.4" } +mwc_p2p = { path = "./p2p", version = "5.3.4" } +mwc_servers = { path = "./servers", version = "5.3.4" } +mwc_util = { path = "./util", version = "5.3.4" } [dependencies.cursive] version = "0.20" @@ -51,8 +51,8 @@ features = ["pancurses-backend"] built = { version = "0.4", features = ["git2"]} [dev-dependencies] -mwc_chain = { path = "./chain", version = "5.3.3" } -mwc_store = { path = "./store", version = "5.3.3" } +mwc_chain = { path = "./chain", version = "5.3.4" } +mwc_store = { path = "./store", version = "5.3.4" } [profile.release-with-debug] inherits = "release" diff --git a/api/Cargo.toml b/api/Cargo.toml index f6e19be5b..1e1f24f29 100644 --- a/api/Cargo.toml +++ b/api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mwc_api" -version = "5.3.3" +version = "5.3.4" authors = ["Mwc Developers "] description = "APIs for mwc, a simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format." license = "Apache-2.0" @@ -30,12 +30,12 @@ url = "2.1" bytes = "0.5" chrono = { version = "0.4.11", features = ["serde"] } -mwc_core = { path = "../core", version = "5.3.3" } -mwc_chain = { path = "../chain", version = "5.3.3" } -mwc_p2p = { path = "../p2p", version = "5.3.3" } -mwc_pool = { path = "../pool", version = "5.3.3" } -mwc_store = { path = "../store", version = "5.3.3" } -mwc_util = { path = "../util", version = "5.3.3" } +mwc_core = { path = "../core", version = "5.3.4" } +mwc_chain = { path = "../chain", version = "5.3.4" } +mwc_p2p = { path = "../p2p", version = "5.3.4" } +mwc_pool = { path = "../pool", version = "5.3.4" } +mwc_store = { path = "../store", version = "5.3.4" } +mwc_util = { path = "../util", version = "5.3.4" } # NOTE. We can't have hyper-rustls the same version for Android and non android. because if how rust builds dependency. # Android must have v0.20+ diff --git a/chain/Cargo.toml b/chain/Cargo.toml index 17c4886cb..a76da9b4b 100644 --- a/chain/Cargo.toml +++ b/chain/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mwc_chain" -version = "5.3.3" +version = "5.3.4" authors = ["Mwc Developers "] description = "Chain implementation for mwc, a simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format." license = "Apache-2.0" @@ -23,10 +23,10 @@ chrono = "0.4.11" lru-cache = "0.1" lazy_static = "1" -mwc_core = { path = "../core", version = "5.3.3" } -mwc_keychain = { path = "../keychain", version = "5.3.3" } -mwc_store = { path = "../store", version = "5.3.3" } -mwc_util = { path = "../util", version = "5.3.3" } +mwc_core = { path = "../core", version = "5.3.4" } +mwc_keychain = { path = "../keychain", version = "5.3.4" } +mwc_store = { path = "../store", version = "5.3.4" } +mwc_util = { path = "../util", version = "5.3.4" } [dev-dependencies] env_logger = "0.7" diff --git a/config/Cargo.toml b/config/Cargo.toml index 23f16e8b9..03f73e918 100644 --- a/config/Cargo.toml +++ b/config/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mwc_config" -version = "5.3.3" +version = "5.3.4" authors = ["Mwc Developers "] description = "Configuration for mwc, a simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format." license = "Apache-2.0" @@ -17,10 +17,10 @@ toml = "0.5" dirs = "2.0" thiserror = "1" -mwc_core = { path = "../core", version = "5.3.3" } -mwc_servers = { path = "../servers", version = "5.3.3" } -mwc_p2p = { path = "../p2p", version = "5.3.3" } -mwc_util = { path = "../util", version = "5.3.3" } +mwc_core = { path = "../core", version = "5.3.4" } +mwc_servers = { path = "../servers", version = "5.3.4" } +mwc_p2p = { path = "../p2p", version = "5.3.4" } +mwc_util = { path = "../util", version = "5.3.4" } [dev-dependencies] pretty_assertions = "0.6.1" diff --git a/core/Cargo.toml b/core/Cargo.toml index b6af2b816..c0f802554 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mwc_core" -version = "5.3.3" +version = "5.3.4" authors = ["Mwc Developers "] description = "Chain implementation for mwc, a simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format." license = "Apache-2.0" @@ -28,8 +28,8 @@ chrono = { version = "0.4.11", features = ["serde"] } zeroize = { version = "1.1", features =["zeroize_derive"] } bytes = "0.5" -keychain = { package = "mwc_keychain", path = "../keychain", version = "5.3.3" } -util = { package = "mwc_util", path = "../util", version = "5.3.3" } +keychain = { package = "mwc_keychain", path = "../keychain", version = "5.3.4" } +util = { package = "mwc_util", path = "../util", version = "5.3.4" } [dev-dependencies] serde_json = "1" diff --git a/keychain/Cargo.toml b/keychain/Cargo.toml index b2bf6fcba..5a8d39aa0 100644 --- a/keychain/Cargo.toml +++ b/keychain/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mwc_keychain" -version = "5.3.3" +version = "5.3.4" authors = ["Mwc Developers "] description = "Chain implementation for mwc, a simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format." license = "Apache-2.0" @@ -27,4 +27,4 @@ ripemd160 = "0.9" sha2 = "0.9" pbkdf2 = "0.8" -mwc_util = { path = "../util", version = "5.3.3" } +mwc_util = { path = "../util", version = "5.3.4" } diff --git a/p2p/Cargo.toml b/p2p/Cargo.toml index 6d035434e..270d8fc72 100644 --- a/p2p/Cargo.toml +++ b/p2p/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mwc_p2p" -version = "5.3.3" +version = "5.3.4" authors = ["Mwc Developers "] description = "Chain implementation for mwc, a simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format." license = "Apache-2.0" @@ -36,10 +36,10 @@ ed25519-dalek = "1" serde_json = "1" bytes = "0.5" -mwc_core = { path = "../core", version = "5.3.3" } -mwc_store = { path = "../store", version = "5.3.3" } -mwc_util = { path = "../util", version = "5.3.3" } -mwc_chain = { path = "../chain", version = "5.3.3" } +mwc_core = { path = "../core", version = "5.3.4" } +mwc_store = { path = "../store", version = "5.3.4" } +mwc_util = { path = "../util", version = "5.3.4" } +mwc_chain = { path = "../chain", version = "5.3.4" } [dev-dependencies] -mwc_pool = { path = "../pool", version = "5.3.3" } +mwc_pool = { path = "../pool", version = "5.3.4" } diff --git a/pool/Cargo.toml b/pool/Cargo.toml index 9e59d04f7..7e922b0f9 100644 --- a/pool/Cargo.toml +++ b/pool/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mwc_pool" -version = "5.3.3" +version = "5.3.4" authors = ["Mwc Developers "] description = "Chain implementation for mwc, a simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format." license = "Apache-2.0" @@ -19,9 +19,9 @@ lru-cache = "0.1" log = "0.4" chrono = "0.4.11" -mwc_core = { path = "../core", version = "5.3.3" } -mwc_keychain = { path = "../keychain", version = "5.3.3" } -mwc_util = { path = "../util", version = "5.3.3" } +mwc_core = { path = "../core", version = "5.3.4" } +mwc_keychain = { path = "../keychain", version = "5.3.4" } +mwc_util = { path = "../util", version = "5.3.4" } [dev-dependencies] -mwc_chain = { path = "../chain", version = "5.3.3" } +mwc_chain = { path = "../chain", version = "5.3.4" } diff --git a/servers/Cargo.toml b/servers/Cargo.toml index 3d05a30bc..d688a93f7 100644 --- a/servers/Cargo.toml +++ b/servers/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mwc_servers" -version = "5.3.3" +version = "5.3.4" authors = ["Mwc Developers "] description = "Simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format." license = "Apache-2.0" @@ -32,14 +32,14 @@ dirs = "1.0.3" timer = "0.2" atomic_float = "1.0" -mwc_api = { path = "../api", version = "5.3.3" } -mwc_chain = { path = "../chain", version = "5.3.3" } -mwc_core = { path = "../core", version = "5.3.3" } -mwc_keychain = { path = "../keychain", version = "5.3.3" } -mwc_p2p = { path = "../p2p", version = "5.3.3" } -mwc_pool = { path = "../pool", version = "5.3.3" } -mwc_store = { path = "../store", version = "5.3.3" } -mwc_util = { path = "../util", version = "5.3.3" } +mwc_api = { path = "../api", version = "5.3.4" } +mwc_chain = { path = "../chain", version = "5.3.4" } +mwc_core = { path = "../core", version = "5.3.4" } +mwc_keychain = { path = "../keychain", version = "5.3.4" } +mwc_p2p = { path = "../p2p", version = "5.3.4" } +mwc_pool = { path = "../pool", version = "5.3.4" } +mwc_store = { path = "../store", version = "5.3.4" } +mwc_util = { path = "../util", version = "5.3.4" } # NOTE. We can't have hyper-rustls the same version for Android and non android. because if how rust builds dependency. # Android must have v0.20+ diff --git a/store/Cargo.toml b/store/Cargo.toml index 3d038ad9f..fa1632c24 100644 --- a/store/Cargo.toml +++ b/store/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mwc_store" -version = "5.3.3" +version = "5.3.4" authors = ["Mwc Developers "] description = "Simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format." license = "Apache-2.0" @@ -21,8 +21,8 @@ serde_derive = "1" thiserror = "1" log = "0.4" -mwc_core = { path = "../core", version = "5.3.3" } -mwc_util = { path = "../util", version = "5.3.3" } +mwc_core = { path = "../core", version = "5.3.4" } +mwc_util = { path = "../util", version = "5.3.4" } [dev-dependencies] chrono = "0.4.11" diff --git a/util/Cargo.toml b/util/Cargo.toml index c01334564..12172f0cb 100644 --- a/util/Cargo.toml +++ b/util/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mwc_util" -version = "5.3.3" +version = "5.3.4" authors = ["Mwc Developers "] description = "Simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format." license = "Apache-2.0"