diff --git a/Cargo.lock b/Cargo.lock index 9a933f4fc..50d6b88b5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -867,7 +867,7 @@ dependencies = [ [[package]] name = "grin" -version = "5.3.1" +version = "5.3.2" dependencies = [ "blake2-rfc", "built", @@ -895,7 +895,7 @@ dependencies = [ [[package]] name = "grin_api" -version = "5.3.1" +version = "5.3.2" dependencies = [ "bytes 0.5.6", "easy-jsonrpc-mw", @@ -926,7 +926,7 @@ dependencies = [ [[package]] name = "grin_chain" -version = "5.3.1" +version = "5.3.2" dependencies = [ "bit-vec", "bitflags 1.3.2", @@ -950,7 +950,7 @@ dependencies = [ [[package]] name = "grin_config" -version = "5.3.1" +version = "5.3.2" dependencies = [ "dirs", "grin_core", @@ -966,7 +966,7 @@ dependencies = [ [[package]] name = "grin_core" -version = "5.3.1" +version = "5.3.2" dependencies = [ "blake2-rfc", "byteorder", @@ -992,7 +992,7 @@ dependencies = [ [[package]] name = "grin_keychain" -version = "5.3.1" +version = "5.3.2" dependencies = [ "blake2-rfc", "byteorder", @@ -1013,7 +1013,7 @@ dependencies = [ [[package]] name = "grin_p2p" -version = "5.3.1" +version = "5.3.2" dependencies = [ "bitflags 1.3.2", "bytes 0.5.6", @@ -1035,7 +1035,7 @@ dependencies = [ [[package]] name = "grin_pool" -version = "5.3.1" +version = "5.3.2" dependencies = [ "blake2-rfc", "chrono", @@ -1067,7 +1067,7 @@ dependencies = [ [[package]] name = "grin_servers" -version = "5.3.1" +version = "5.3.2" dependencies = [ "chrono", "fs2", @@ -1096,7 +1096,7 @@ dependencies = [ [[package]] name = "grin_store" -version = "5.3.1" +version = "5.3.2" dependencies = [ "byteorder", "chrono", @@ -1118,7 +1118,7 @@ dependencies = [ [[package]] name = "grin_util" -version = "5.3.1" +version = "5.3.2" dependencies = [ "backtrace", "base64 0.12.3", diff --git a/Cargo.toml b/Cargo.toml index a6f217878..bed909767 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "grin" -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" @@ -32,14 +32,14 @@ serde_json = "1" log = "0.4" term = "0.6" -grin_api = { path = "./api", version = "5.3.1" } -grin_config = { path = "./config", version = "5.3.1" } -grin_chain = { path = "./chain", version = "5.3.1" } -grin_core = { path = "./core", version = "5.3.1" } -grin_keychain = { path = "./keychain", version = "5.3.1" } -grin_p2p = { path = "./p2p", version = "5.3.1" } -grin_servers = { path = "./servers", version = "5.3.1" } -grin_util = { path = "./util", version = "5.3.1" } +grin_api = { path = "./api", version = "5.3.2" } +grin_config = { path = "./config", version = "5.3.2" } +grin_chain = { path = "./chain", version = "5.3.2" } +grin_core = { path = "./core", version = "5.3.2" } +grin_keychain = { path = "./keychain", version = "5.3.2" } +grin_p2p = { path = "./p2p", version = "5.3.2" } +grin_servers = { path = "./servers", version = "5.3.2" } +grin_util = { path = "./util", version = "5.3.2" } [dependencies.cursive] version = "0.20" @@ -50,5 +50,5 @@ features = ["pancurses-backend"] built = { version = "0.4", features = ["git2"]} [dev-dependencies] -grin_chain = { path = "./chain", version = "5.3.1" } -grin_store = { path = "./store", version = "5.3.1" } +grin_chain = { path = "./chain", version = "5.3.2" } +grin_store = { path = "./store", version = "5.3.2" } diff --git a/api/Cargo.toml b/api/Cargo.toml index ddf5a8ddf..62d1a952e 100644 --- a/api/Cargo.toml +++ b/api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "grin_api" -version = "5.3.1" +version = "5.3.2" authors = ["Grin Developers "] description = "APIs for grin, a simple, private and scalable cryptocurrency implementation based on the Mimblewimble chain format." license = "Apache-2.0" @@ -30,9 +30,9 @@ rustls = "0.17" url = "2.1" bytes = "0.5" -grin_core = { path = "../core", version = "5.3.1" } -grin_chain = { path = "../chain", version = "5.3.1" } -grin_p2p = { path = "../p2p", version = "5.3.1" } -grin_pool = { path = "../pool", version = "5.3.1" } -grin_store = { path = "../store", version = "5.3.1" } -grin_util = { path = "../util", version = "5.3.1" } +grin_core = { path = "../core", version = "5.3.2" } +grin_chain = { path = "../chain", version = "5.3.2" } +grin_p2p = { path = "../p2p", version = "5.3.2" } +grin_pool = { path = "../pool", version = "5.3.2" } +grin_store = { path = "../store", version = "5.3.2" } +grin_util = { path = "../util", version = "5.3.2" } diff --git a/api/src/foreign.rs b/api/src/foreign.rs index 88d147192..cddfe7831 100644 --- a/api/src/foreign.rs +++ b/api/src/foreign.rs @@ -236,7 +236,9 @@ where /// * `start_height` - start height to start the lookup. /// * `end_height` - end height to stop the lookup. /// * `include_proof` - whether or not to include the range proof in the response. - /// * `include_merkle_proof` - whether or not to include the merkle proof in the response. + /// * `include_merkle_proof` (currently ignored) - whether or not to include the merkle proof in the response. + /// removed as it is not used and expensive to generate for historical blocks. See comments below to + /// re-enable this feature at compile-time. /// /// # Returns /// * Result Containing: @@ -250,7 +252,7 @@ where start_height: Option, end_height: Option, include_proof: Option, - include_merkle_proof: Option, + _include_merkle_proof: Option, ) -> Result, Error> { let output_handler = OutputHandler { chain: self.chain.clone(), @@ -260,7 +262,7 @@ where start_height, end_height, include_proof, - include_merkle_proof, + Some(false), // To re-enable merkle proof generation, change to _include_merkle_proof ) } diff --git a/api/src/foreign_rpc.rs b/api/src/foreign_rpc.rs index 7415e3541..431d8e51d 100644 --- a/api/src/foreign_rpc.rs +++ b/api/src/foreign_rpc.rs @@ -646,7 +646,7 @@ pub trait ForeignRpc: Sync + Send { { "block_height": 376151, "commit": "08ecd94ae293863286e99d37f4685f07369bc084ba74d5c59c7f15359a75c84c03", - "merkle_proof": "6b2abbd334c9d75409461fba9c1acd4a8d7bc2ab0bc43143f42388b2a3a87b881505ccf8ffc8737fa6fd4fe412a082d974911bd223eae612d0d1d7ddcc09b5e6079c40b011405b2ccb49ce32473c93aea6d843488d5765fea114d3368d34cd05fcb8c2de3903fbaf39b1f064c809f9f1c0d47959d81a508957040eda55c6dce6dd8c43a79c72faffacfabe1d73055790b6249de2f7c603f186cb109eee58fb1426ea48cb781f88df9acd8996d235fe6bfe60e02aae6e3bfe38ed2599baca1430b3b637072d9bdcdc7644f873728e3cd38eff7124ea848cfad67f8e114cf8595c89a3686a4271cfb2b5098597c315c01d04270ca8f70262af967a947f49adacfa4aad8b6fd196dd0ef4e5cefa132c38c7e5f43db12b3d74f0a8d83c3404e73c6b25a12bff70a8ef4526c89b1558810bb744ede53f8c4cc8cc2555e953637722adb41ea5752281cf1f75599f7e59b17f11f5f9ce4f6b2da4141a3398f51d8b834cdc8b00f61915a41d200572a10bb2102cbae7e94aa7ced3c388dcd58282932c99a8fa66f6fc511ff3e8c60d442bbdb49cca1166328ca8c9bbc97d024570b4cc1ca6c7dba3db223e9e27fd9345b94d3cf10e2b54915b87c57e32965bc2db1b1f956d1962812738ca9b2c93fd7825adf4dffddc97aa85ca0f3f412f02d30678a816d2efbfb6778305fd5e610b6e8af30030bc059880c337bfde326b392d5dcd7c36cb0076fbccc7099b94f1f03bdb525d6e3818b6d50b93ced802957a4b03892c71b6679052bd35e92ceea71a96b22b2ed2c129755f0c74fa172f43da2790f3132a7e57e408d2fc5f1126b088cd0398e6dedcb237242e6720e12e8d7a5a1e196eda6241cfee1cc85e9d20af67f3f9bdf91160516ebcd0b8da6bb7b12229e1112b22c9f1aaef1d75441465cfee2ac1c47b5255514316ed4637e192b00ff28491168f2f2b00", + "merkle_proof": null, "mmr_index": 4107711, "output_type": "Coinbase", "proof": "7083884b5f64e4e61fb910d2c3c603f7c94490716d95e7144b4c927d0ca6ccc0e069cc285e25f38ee90c402ef26005cad2b4073eeba17f0ae3ea2b87095106ef00634f321d8a49c2feaad485bc9ee552564a6a883c99886d0d3a85af3490d718f5a5cbc70f9dcc9bf5d987fb6072132a4c247d4bbd4af927532a887b1e4250b7277771f6b82f43f4fb5a48089ed58e7d3190a19197e07acfed650f8b2cd5f103e994fb3d3735c5727f06f302bd1f182586297dd57a7951ff296bdf6106704abedc39db77f1293effaa7496a77d19420a6208bc1c589b33dad9540cb6180cccf5e085006b01309419f931e54531d770e5fe00eca584072692a7e4883fd65ed4a7c460665608ab96bf0c7d564fe96a341f14066db413a6fddc359eb11f6f962aca70ca1414c35d7941ce06b77d0a0606081b78d5e64a4501f8e8eba9f0e0889042bc54b4cbfd71087a95af63e0306dba214084d4860b0ce66dc80af44224e5a6fef55800650b05cf1639f81bfdc30950f3634d1fd4375d50c22c7f13f3dfb690e5f155a535aff041b7f800bfe74c60f606e8ab47df60754a0e08221c2a50abe643bb086433afd040a7e6290d1d00b3fe657be3bb05c67f90eb183c2acb53c81e1ca15cd8d35fe9d7d52d8f455398e905bdc77ffb211697d477af25704cf9896e8ce797f4fed03e2ba1615e3ad5646eecaa698470f99437d01d5193f041201502763e8bde51e6dc830b5c676d05c8f7f87c4972c578b8d9d5922ba29f6e4a89a123311d02b5ac44a7d5307f7ed5e4e66aaf749afc76c6fc1114445d6fafeea816a0f985eeacdbe9e6d32a8514ca4aaf7faad4e9d43cde55327ac84bac4d70a9319840e136e713aa31d639e43302f3c71a79f08f4e5c9a19a48d4b46403734cd8f3cc9b67bc26ea8e2a01e63a6f5be6e044e8ed5db5f26d15d25de75f672a79315c5e2407e", @@ -656,7 +656,7 @@ pub trait ForeignRpc: Sync + Send { { "block_height": 376154, "commit": "095c12db5e57e4a1ead0870219bda4ebfb1419f6ab1501386b9dd8dc9811a8c5ff", - "merkle_proof": "00000000003eadc6000000000000000e13c509a17cbb0d81634215cd2482ab6d9eb58b332fcbe6b2c4fa458a63d3cb0dfe3614ebe6e52657870df225d132179fa1ea0fdc2105f0e51d03bc3765a9cd059c60d434a7cae0a3d669b37588c25410f57405c841312cfa50cf514678877a3f4ce8bd3e57723ba75a2b7d61027b2088fbabebdb7336b97ea88b00a7e809a6245def980eba18d987601f4cbd6c3cc9f12a5684fe7a1bc2565a9f8ab63c2db1afa8304f5e23d4754cd97f29c8b06dcb3de4f6d3a83079676b6e9941afe5553a7195384b564ecd6d37522cb5e452cc930d2b549af22698a8fd9bf6cad05a06b09e3f6e672b94e82c0255394b5c187ab76fda653a2491378997ba3d49f9d9c34ca93bc627fe5d98b327c03d429b5473f62672e9d73c4eafd9cb8f62e5158a1ec7eb56653696b10fb9ec205f5e4d1c7a1f3e2dd2994b12eeed93e84776d8dcd8a5d78aecd4f96ae95c0b090d104adf2aa84f0a1fbd8d319fea5476d1a306b2800716e60b00115a5cca678617361c5a89660b4536c56254bc8dd7035d96f05de62b042d16acaeff57c111fdf243b859984063e3fcfdf40c4c4a52889706857a7c3e90e264f30f40cc87bd20e74689f14284bc5ea0a540950dfcc8d33c503477eb1c60", + "merkle_proof": null, "mmr_index": 4107717, "output_type": "Coinbase", "proof": "073593bc475478f1e4b648ab261df3b0a6e5a58a617176dd0c8f5e0e1d58b012b40eb9b341d16ee22baf3645ea37705895e731dee5c220b58b0f780d781806a10dfa33e870d0494fba18aaa8a7a709bfb3ddf9eb3e4e75a525b382df68dc6f710275cdffb623373c47c1310ae63479826f435ca4520fdc13bb0d995b7d9a10a7587d61bd4a51c9e32c87f3eb6b0f862cdff19a9ac6cb04d6f7fafb8e94508a851dcf5dc6acea4271bb40117a45319da5522b966091b089698f4f940842458b5b49e212d846be35e0c2b98a00ac3d0b7ceaf081272dbed8abd84fe8f26d57bac1340e8184602436ed8c4470ef9dc214df3405de0e71703abec4456b15e122a94706852bb476213ceadf00529d00d8d3b16dc57f4e4a9a86dacfa719e00366728de42f3f830e73f6113f1e391fab07eba1b40f6466203b0ce14701230e934f6138c575660a03dbb0e59d7295df3115a4fc0909a5520d74657b319fc83481079ad6c13400175e39fa2b86071ba563ce8836320713ef8f55d4e90bee3f57df96c7aef0f2e896f57192fae9675471cd9751bcaf2b15e5a65a9733a6f7f9b8147b8f6e8dac51d056018d411fd252225cf88e56f143143f49e8a0d2e43c10de0442dbc84966817532b1256b6769db987526790a389c371a1fe7a36eacffef82877b4db7a9b5e58722ffbd0fc4fdbd7624365ee326bb8b1e60b999f513715b30f37ef6116eabf53b3524b46c33a1fac49205b39e24aa388d823269c1fc43c3599a06b69433a0a47a03bd871321afb7846a6dbfd5891bd84f89c556231745c929d08445f66f332857bfda1c4f86ae58a01007b7303f870ac24e0ba72d84c0ef4903ac2ff777e2c2dcb4d8e303c74e0c8a559686b4d4c25024ee97601787d4e5a97224af41e5d35d91744292f5a41f64d4e1cae77bebebd77a473f3b54e86f7221aac230942f0468", @@ -666,7 +666,7 @@ pub trait ForeignRpc: Sync + Send { { "block_height": 376153, "commit": "0948cb346b7affe004a6f84fa4b5b44995830f1c332b03537df4c258d51d1afb50", - "merkle_proof": "00000000003eadc4000000000000000dfe3614ebe6e52657870df225d132179fa1ea0fdc2105f0e51d03bc3765a9cd059c60d434a7cae0a3d669b37588c25410f57405c841312cfa50cf514678877a3f4ce8bd3e57723ba75a2b7d61027b2088fbabebdb7336b97ea88b00a7e809a6245def980eba18d987601f4cbd6c3cc9f12a5684fe7a1bc2565a9f8ab63c2db1afa8304f5e23d4754cd97f29c8b06dcb3de4f6d3a83079676b6e9941afe5553a7195384b564ecd6d37522cb5e452cc930d2b549af22698a8fd9bf6cad05a06b09e3f6e672b94e82c0255394b5c187ab76fda653a2491378997ba3d49f9d9c34ca93bc627fe5d98b327c03d429b5473f62672e9d73c4eafd9cb8f62e5158a1ec7eb56653696b10fb9ec205f5e4d1c7a1f3e2dd2994b12eeed93e84776d8dcd8a5d78aecd4f96ae95c0b090d104adf2aa84f0a1fbd8d319fea5476d1a306b2800716e60b00115a5cca678617361c5a89660b4536c56254bc8dd7035d96f05de62b042d16acaeff57c111fdf243b859984063e3fcfdf40c4c4a52889706857a7c3e90e264f30f40cc87bd20e74689f14284bc5ea0a540950dfcc8d33c503477eb1c60", + "merkle_proof": null, "mmr_index": 4107716, "output_type": "Coinbase", "proof": "72950da23ad7f0d0381e2f788bf0ac6b6bcb17aaccf0373534122a95714d2d0dbf6a24822b4aab0711a595c80bc36122957111c39292f2a36a973252fb88cbda0b1d61ea8ea84f5171a61f751cac97332637b7cf74cc73144b912ba700dedaa60895f06e947f1e42a8c79d70f924f45fdcb6df5d30289f36ff77d0ae368df5775a739b7a25cbfb63f0cdbdc167b046067c2a021fe0950c7b67515b185b9e4a00ce63b795d49ae184fe5cc726d72fc05d717c4fb55dd5f65967dc282d3c47cb6f8a92cb696e5a1d8cca21214bc766e3de6271791cebf646cda97ae77035da16606f3397f71e103137358c97b9943c3e15403184f61230bd0e3954c7681a0891aa7a0cc32e82d830fb7d8759a04d1da7058630a853508df095142f22158c28bd5e3f2477ad6c8990e63d0377a0fa3d588b6584453778eb38cbaec8a33c1d3772c97a826d4a2f6953c35342993b04567e9fea6fc64fb714653f934faa1a8f635d39eb2903de4bed960a3df07dce7c2e3ff517bbc15f467d0190a579bc07b0f1a910b23269d794835bbb34e8318dcc4fd4159f8f03faa77842d445cf61af9e33caf46aa5fae0812a6476a09c0757e929271a96a245701ab14c1fdd836b92b7e763afa623017f68f1bc4eb716ce735820a1311b743dd8d5c6bb275a2e4e7d2eff8f45417b60cc937086c3e7fd3b612ae064d7237eb6a7bd1a39d8575fac312068fa060bc1ceac4df0754601edaf04ecb1b89c0661ea01a593c3763e456bebbd8487edc0ff3bc6f203965cd92b1706070c59a3795f9dee23087cea0aaec015f1b7bfe4df81818d7a37af781ca7b757ace2fa489f85215ecb85976b1c74c7f1df6d834a8bc63e887407ef6e233c55ea040bc5f2471e99ebc92f2283ff592ff751d9226bd105e68e187c91ecb236c9fa4fb060ae4d706c571ac2123da1debd12737d98be118578", diff --git a/chain/Cargo.toml b/chain/Cargo.toml index 873ed20cc..1934a862e 100644 --- a/chain/Cargo.toml +++ b/chain/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "grin_chain" -version = "5.3.1" +version = "5.3.2" authors = ["Grin Developers "] description = "Chain implementation for grin, 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" -grin_core = { path = "../core", version = "5.3.1" } -grin_keychain = { path = "../keychain", version = "5.3.1" } -grin_store = { path = "../store", version = "5.3.1" } -grin_util = { path = "../util", version = "5.3.1" } +grin_core = { path = "../core", version = "5.3.2" } +grin_keychain = { path = "../keychain", version = "5.3.2" } +grin_store = { path = "../store", version = "5.3.2" } +grin_util = { path = "../util", version = "5.3.2" } [dev-dependencies] env_logger = "0.7" diff --git a/config/Cargo.toml b/config/Cargo.toml index eeffeb9ae..324e78c09 100644 --- a/config/Cargo.toml +++ b/config/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "grin_config" -version = "5.3.1" +version = "5.3.2" authors = ["Grin Developers "] description = "Configuration for grin, a simple, private and scalable cryptocurrency implementation based on the Mimblewimble chain format." license = "Apache-2.0" @@ -16,10 +16,10 @@ serde_derive = "1" toml = "0.5" dirs = "2.0" -grin_core = { path = "../core", version = "5.3.1" } -grin_servers = { path = "../servers", version = "5.3.1" } -grin_p2p = { path = "../p2p", version = "5.3.1" } -grin_util = { path = "../util", version = "5.3.1" } +grin_core = { path = "../core", version = "5.3.2" } +grin_servers = { path = "../servers", version = "5.3.2" } +grin_p2p = { path = "../p2p", version = "5.3.2" } +grin_util = { path = "../util", version = "5.3.2" } [dev-dependencies] pretty_assertions = "0.6.1" diff --git a/core/Cargo.toml b/core/Cargo.toml index c3261a3be..78251affb 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "grin_core" -version = "5.3.1" +version = "5.3.2" authors = ["Grin Developers "] description = "Chain implementation for grin, 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 = "grin_keychain", path = "../keychain", version = "5.3.1" } -util = { package = "grin_util", path = "../util", version = "5.3.1" } +keychain = { package = "grin_keychain", path = "../keychain", version = "5.3.2" } +util = { package = "grin_util", path = "../util", version = "5.3.2" } [dev-dependencies] serde_json = "1" diff --git a/keychain/Cargo.toml b/keychain/Cargo.toml index 836dd2262..8c9179303 100644 --- a/keychain/Cargo.toml +++ b/keychain/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "grin_keychain" -version = "5.3.1" +version = "5.3.2" authors = ["Grin Developers "] description = "Chain implementation for grin, a simple, private and scalable cryptocurrency implementation based on the Mimblewimble chain format." license = "Apache-2.0" @@ -26,4 +26,4 @@ ripemd160 = "0.9" sha2 = "0.9" pbkdf2 = "0.8" -grin_util = { path = "../util", version = "5.3.1" } +grin_util = { path = "../util", version = "5.3.2" } diff --git a/p2p/Cargo.toml b/p2p/Cargo.toml index a7124751e..141032546 100644 --- a/p2p/Cargo.toml +++ b/p2p/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "grin_p2p" -version = "5.3.1" +version = "5.3.2" authors = ["Grin Developers "] description = "Chain implementation for grin, a simple, private and scalable cryptocurrency implementation based on the Mimblewimble chain format." license = "Apache-2.0" @@ -22,10 +22,10 @@ log = "0.4" chrono = { version = "0.4.11", features = ["serde"] } bytes = "0.5" -grin_core = { path = "../core", version = "5.3.1" } -grin_store = { path = "../store", version = "5.3.1" } -grin_util = { path = "../util", version = "5.3.1" } -grin_chain = { path = "../chain", version = "5.3.1" } +grin_core = { path = "../core", version = "5.3.2" } +grin_store = { path = "../store", version = "5.3.2" } +grin_util = { path = "../util", version = "5.3.2" } +grin_chain = { path = "../chain", version = "5.3.2" } [dev-dependencies] -grin_pool = { path = "../pool", version = "5.3.1" } +grin_pool = { path = "../pool", version = "5.3.2" } diff --git a/pool/Cargo.toml b/pool/Cargo.toml index 78da5b789..bd4a61263 100644 --- a/pool/Cargo.toml +++ b/pool/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "grin_pool" -version = "5.3.1" +version = "5.3.2" authors = ["Grin Developers "] description = "Chain implementation for grin, a simple, private and scalable cryptocurrency implementation based on the Mimblewimble chain format." license = "Apache-2.0" @@ -18,9 +18,9 @@ thiserror = "1" log = "0.4" chrono = "0.4.11" -grin_core = { path = "../core", version = "5.3.1" } -grin_keychain = { path = "../keychain", version = "5.3.1" } -grin_util = { path = "../util", version = "5.3.1" } +grin_core = { path = "../core", version = "5.3.2" } +grin_keychain = { path = "../keychain", version = "5.3.2" } +grin_util = { path = "../util", version = "5.3.2" } [dev-dependencies] -grin_chain = { path = "../chain", version = "5.3.1" } +grin_chain = { path = "../chain", version = "5.3.2" } diff --git a/servers/Cargo.toml b/servers/Cargo.toml index a6b7a175b..c4e7c5dd7 100644 --- a/servers/Cargo.toml +++ b/servers/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "grin_servers" -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" @@ -26,11 +26,11 @@ tokio = {version = "0.2", features = ["full"] } tokio-util = { version = "0.2", features = ["codec"] } walkdir = "2.3.1" -grin_api = { path = "../api", version = "5.3.1" } -grin_chain = { path = "../chain", version = "5.3.1" } -grin_core = { path = "../core", version = "5.3.1" } -grin_keychain = { path = "../keychain", version = "5.3.1" } -grin_p2p = { path = "../p2p", version = "5.3.1" } -grin_pool = { path = "../pool", version = "5.3.1" } -grin_store = { path = "../store", version = "5.3.1" } -grin_util = { path = "../util", version = "5.3.1" } +grin_api = { path = "../api", version = "5.3.2" } +grin_chain = { path = "../chain", version = "5.3.2" } +grin_core = { path = "../core", version = "5.3.2" } +grin_keychain = { path = "../keychain", version = "5.3.2" } +grin_p2p = { path = "../p2p", version = "5.3.2" } +grin_pool = { path = "../pool", version = "5.3.2" } +grin_store = { path = "../store", version = "5.3.2" } +grin_util = { path = "../util", version = "5.3.2" } diff --git a/store/Cargo.toml b/store/Cargo.toml index 73d12b570..f95134b9a 100644 --- a/store/Cargo.toml +++ b/store/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "grin_store" -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" @@ -21,8 +21,8 @@ serde_derive = "1" thiserror = "1" log = "0.4" -grin_core = { path = "../core", version = "5.3.1" } -grin_util = { path = "../util", version = "5.3.1" } +grin_core = { path = "../core", version = "5.3.2" } +grin_util = { path = "../util", version = "5.3.2" } [dev-dependencies] chrono = "0.4.11" diff --git a/util/Cargo.toml b/util/Cargo.toml index 6cfddedbb..4ff5a3499 100644 --- a/util/Cargo.toml +++ b/util/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "grin_util" -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"