File tree 4 files changed +14
-4
lines changed
4 files changed +14
-4
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,13 @@ All notable changes to this project will be documented in this file. The format
15
15
16
16
17
17
18
+ ## [ 1.4.5] - 2022-05-13
19
+
20
+ ### Changed
21
+ * Update dependencies.
22
+
23
+
24
+
18
25
## [ 1.4.4] - 2022-04-06
19
26
20
27
### Changed
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " casper-client"
3
- version = " 1.4.4 " # when updating, also update 'html_root_url' in lib.rs
3
+ version = " 1.5.0 " # when updating, also update 'html_root_url' in lib.rs
4
4
authors = [
" Marc Brinkmann <[email protected] >" ,
" Fraser Hutchison <[email protected] >" ]
5
5
edition = " 2018"
6
6
description = " A client library and binary for interacting with the Casper network"
@@ -24,8 +24,8 @@ doc = false
24
24
async-trait = " 0.1.51"
25
25
base16 = " 0.2.1"
26
26
base64 = " 0.13.0"
27
- casper-execution-engine = " 1.4.4 "
28
- casper-node = " 1.4.5 "
27
+ casper-execution-engine = " 2.0.0 "
28
+ casper-node = " 1.4.6 "
29
29
casper-hashing = " 1.4.3"
30
30
casper-types = " 1.5.0"
31
31
clap = " 2"
Original file line number Diff line number Diff line change 1
1
//! # Casper node client library
2
2
#![ doc(
3
- html_root_url = "https://docs.rs/casper-client/1.4.4 " ,
3
+ html_root_url = "https://docs.rs/casper-client/1.5.0 " ,
4
4
html_favicon_url = "https://raw.githubusercontent.com/CasperLabs/casper-node/master/images/CasperLabs_Logo_Favicon_RGB_50px.png" ,
5
5
html_logo_url = "https://raw.githubusercontent.com/CasperLabs/casper-node/master/images/CasperLabs_Logo_Symbol_RGB.png" ,
6
6
test( attr( forbid( warnings) ) )
Original file line number Diff line number Diff line change @@ -284,6 +284,7 @@ pub(super) mod dependencies {
284
284
. display_order ( DisplayOrder :: Dependencies as usize )
285
285
}
286
286
287
+ #[ allow( clippy:: iter_overeager_cloned) ]
287
288
pub ( in crate :: deploy) fn get < ' a > ( matches : & ' a ArgMatches ) -> Vec < & ' a str > {
288
289
matches
289
290
. values_of ( ARG_NAME )
@@ -373,6 +374,7 @@ pub(super) mod arg_simple {
373
374
. requires ( super :: session:: ARG_NAME )
374
375
}
375
376
377
+ #[ allow( clippy:: iter_overeager_cloned) ]
376
378
pub fn get < ' a > ( matches : & ' a ArgMatches ) -> Vec < & ' a str > {
377
379
matches
378
380
. values_of ( ARG_NAME )
@@ -393,6 +395,7 @@ pub(super) mod arg_simple {
393
395
. requires ( super :: payment:: ARG_NAME )
394
396
}
395
397
398
+ #[ allow( clippy:: iter_overeager_cloned) ]
396
399
pub fn get < ' a > ( matches : & ' a ArgMatches ) -> Vec < & ' a str > {
397
400
matches
398
401
. values_of ( ARG_NAME )
You can’t perform that action at this time.
0 commit comments