Skip to content

Commit

Permalink
Update to Rust 1.63 for the docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
messense committed Aug 11, 2022
1 parent 8c1aa72 commit cac7348
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ENV PATH /root/.cargo/bin:$PATH
# Use an explicit version to actually install the version we require instead of using the cache
# It would be even cooler to invalidate the cache depending on when the official rust image changes,
# but I don't know how to do that
RUN curl --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- --default-toolchain 1.62.1 -y
RUN curl --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- --default-toolchain 1.63.0 -y

# Compile dependencies only for build caching
ADD Cargo.toml /maturin/Cargo.toml
Expand Down
2 changes: 1 addition & 1 deletion src/auditwheel/policy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ pub static MUSLLINUX_POLICIES: Lazy<Vec<Policy>> = Lazy::new(|| {
});

/// Manylinux policy
#[derive(Debug, Clone, PartialEq, Deserialize)]
#[derive(Debug, Clone, PartialEq, Eq, Deserialize)]
pub struct Policy {
/// platform tag name
pub name: String,
Expand Down

0 comments on commit cac7348

Please sign in to comment.