Skip to content

Commit 7e44a7b

Browse files
authored
Merge pull request #747 from imageworks/rust-1.70.0
Update toolchain to 1.70.0
2 parents 834d07f + 736e467 commit 7e44a7b

File tree

6 files changed

+9
-5
lines changed

6 files changed

+9
-5
lines changed

.github/workflows/rust.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
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

.site/spi/.spdev.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ release_notes: |
66
77
toolchain:
88
- kind: Rust
9-
toolchain: 1.68.2
9+
toolchain: 1.70.0
1010
additional_toolchains:
1111
- nightly
1212
- kind: Shell

crates/spfs/src/graph/mod.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
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+
67
mod blob;
78
mod database;
89
mod entry;

crates/spfs/src/runtime/storage.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
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+
67
use std::collections::HashSet;
78
use std::os::unix::fs::{MetadataExt, PermissionsExt};
89
use std::path::{Path, PathBuf};

crates/spfs/src/tracking/mod.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
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+
67
pub mod blob_reader;
78
mod diff;
89
mod entry;

crates/spk-schema/crates/foundation/src/version/version_test.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ fn test_parse_version_invalid(#[case] string: &str) {
7979
#[case("1.2.5.7-alpha.4+rev.6")]
8080
fn 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
}

0 commit comments

Comments
 (0)