File tree Expand file tree Collapse file tree 6 files changed +9
-5
lines changed
spk-schema/crates/foundation/src/version Expand file tree Collapse file tree 6 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 1212 runs-on : ubuntu-latest
1313 timeout-minutes : 30
1414 container :
15- image : rust:1.68.2
15+ image : rust:1.70.0
1616 options : --security-opt seccomp=unconfined --privileged
1717 env :
1818 # Disable cnproc because we're in a container
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ release_notes: |
66
77toolchain :
88 - kind : Rust
9- toolchain : 1.68.2
9+ toolchain : 1.70.0
1010 additional_toolchains :
1111 - nightly
1212 - kind : Shell
Original file line number Diff line number Diff line change 22// SPDX-License-Identifier: Apache-2.0
33// https://github.com/imageworks/spk
44
5- ///! Low-level digraph representation and manipulation for data storage.
5+ //! Low-level digraph representation and manipulation for data storage.
6+
67mod blob;
78mod database;
89mod entry;
Original file line number Diff line number Diff line change 22// SPDX-License-Identifier: Apache-2.0
33// https://github.com/imageworks/spk
44
5- ///! Definition and persistent storage of runtimes.
5+ //! Definition and persistent storage of runtimes.
6+
67use std:: collections:: HashSet ;
78use std:: os:: unix:: fs:: { MetadataExt , PermissionsExt } ;
89use std:: path:: { Path , PathBuf } ;
Original file line number Diff line number Diff line change 22// SPDX-License-Identifier: Apache-2.0
33// https://github.com/imageworks/spk
44
5- ///! Object tracking and definitions
5+ //! Object tracking and definitions
6+
67pub mod blob_reader;
78mod diff;
89mod entry;
Original file line number Diff line number Diff line change @@ -79,6 +79,7 @@ fn test_parse_version_invalid(#[case] string: &str) {
7979#[ case( "1.2.5.7-alpha.4+rev.6" ) ]
8080fn test_parse_version_clone ( #[ case] string : & str ) {
8181 let v1 = parse_version ( string) . unwrap ( ) ;
82+ #[ allow( clippy:: redundant_clone) ]
8283 let v2 = v1. clone ( ) ;
8384 assert_eq ! ( v1, v2) ;
8485}
You can’t perform that action at this time.
0 commit comments