This repository was archived by the owner on Jun 4, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +17
-11
lines changed Expand file tree Collapse file tree 6 files changed +17
-11
lines changed Original file line number Diff line number Diff line change 15
15
runs-on : ubuntu-latest
16
16
steps :
17
17
- uses : actions/checkout@v1
18
- - run : cargo clippy --all-targets --all-features -- -D warnings
18
+ - run : cargo clippy --all-targets --all-features -- -D clippy::all -D clippy::cargo
19
19
20
20
build :
21
21
name : Build
Original file line number Diff line number Diff line change 16
16
--->
17
17
# Contributing to ` parsec-client-test `
18
18
19
- Contributions to PARSEC need to follow the process below.
19
+ Contributions to Parsec need to follow the process below.
20
20
21
21
* Contributions are done through GitHub pull-requests.
22
22
* Contributors need to apply ` rustfmt ` and ` clippy ` to their Rust code.
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " parsec-client-test"
3
- version = " 0.1.13 "
3
+ version = " 0.1.14 "
4
4
authors = [
" Paul Howard <[email protected] >" ,
5
5
" Ionut Mihalcea <[email protected] >" ,
6
6
" Hugues de Valon <[email protected] >" ]
7
+ description = " Parsec Test Client library to perform integration testing with the Parsec service"
8
+ license = " Apache-2.0"
9
+ repository = " https://github.com/parallaxsecond/parsec-client-test"
10
+ readme = " README.md"
11
+ keywords = [" parsec" , " testing" ]
12
+ categories = [" development-tools" ]
7
13
edition = " 2018"
14
+ publish = false
8
15
9
16
[dependencies ]
10
- parsec-interface = { git = " https://github.com/parallaxsecond/parsec-interface-rs" , tag = " 0.6.0 " }
17
+ parsec-interface = { git = " https://github.com/parallaxsecond/parsec-interface-rs" , tag = " 0.6.1 " }
11
18
num = " 0.2.0"
12
19
rand = " 0.7.2"
13
20
log = " 0.4.8"
Original file line number Diff line number Diff line change @@ -283,7 +283,7 @@ impl TestClient {
283
283
Ok ( ( ) )
284
284
}
285
285
286
- /// Lists the provider available for the PARSEC service.
286
+ /// Lists the provider available for the Parsec service.
287
287
pub fn list_providers ( & mut self ) -> Result < Vec < ProviderInfo > > {
288
288
let result = self . send_operation ( NativeOperation :: ListProviders ( OpListProviders { } ) ) ?;
289
289
Original file line number Diff line number Diff line change 17
17
const_err,
18
18
dead_code,
19
19
improper_ctypes,
20
- legacy_directory_ownership,
21
20
non_shorthand_field_patterns,
22
21
no_mangle_generic_items,
23
22
overflowing_literals,
24
23
path_statements,
25
24
patterns_in_fns_without_body,
26
- plugin_as_library,
27
25
private_in_public,
28
- safe_extern_statics,
29
26
unconditional_recursion,
30
27
unused,
31
28
unused_allocation,
43
40
unused_results,
44
41
missing_copy_implementations
45
42
) ]
46
- //! # PARSEC Test Client library
43
+ // This one is hard to avoid.
44
+ #![ allow( clippy:: multiple_crate_versions) ]
45
+ //! # Parsec Test Client library
47
46
//!
48
- //! This library exposes minimal functions to communicate with the PARSEC service as a real client
49
- //! would do. It is used to perform integration tests on the PARSEC service as a whole.
47
+ //! This library exposes minimal functions to communicate with the Parsec service as a real client
48
+ //! would do. It is used to perform integration tests on the Parsec service as a whole.
50
49
//!
51
50
//! It contains three subclients to communicate on different abstraction levels.
52
51
//!
You can’t perform that action at this time.
0 commit comments