Bump MSRV to 1.52.0 and fix cargo fmt and doc

This commit is contained in:
Steve Myers 2021-10-25 08:16:54 -07:00
parent 2f71810c07
commit 0ee34bd105
No known key found for this signature in database
GPG key ID: 8105A46B22C2D051
4 changed files with 4 additions and 4 deletions

View file

@ -16,7 +16,7 @@ jobs:
strategy: strategy:
matrix: matrix:
os: [ubuntu-latest, macOS-latest, windows-latest] os: [ubuntu-latest, macOS-latest, windows-latest]
rust: [stable, 1.36.0] rust: [stable, 1.52.0]
steps: steps:
- uses: actions/checkout@master - uses: actions/checkout@master

View file

@ -51,7 +51,7 @@ All of these are enabled by default.
MSRV MSRV
---- ----
Our current Minimum Supported Rust Version is **1.36.0**. When adding features, Our current Minimum Supported Rust Version is **1.52.0**. When adding features,
we will follow these guidelines: we will follow these guidelines:
- We will always support the latest four minor Rust versions. This gives you a 6 - We will always support the latest four minor Rust versions. This gives you a 6

View file

@ -9,7 +9,7 @@ use std::fmt;
/// contents to be read without context. /// contents to be read without context.
/// ///
/// When creating ZIP files, you may choose the method to use with /// When creating ZIP files, you may choose the method to use with
/// [`zip::write::FileOptions::compression_method`] /// [`crate::write::FileOptions::compression_method`]
#[derive(Copy, Clone, PartialEq, Eq, Debug)] #[derive(Copy, Clone, PartialEq, Eq, Debug)]
pub enum CompressionMethod { pub enum CompressionMethod {
/// Store the file as is /// Store the file as is