Skip to content

Commit

Permalink
Pull back MSRV to 1.67
Browse files Browse the repository at this point in the history
  • Loading branch information
udoprog committed Feb 10, 2024
1 parent b40f0bd commit 352067c
Show file tree
Hide file tree
Showing 13 changed files with 17 additions and 16 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ jobs:
strategy:
fail-fast: false
matrix:
rust: ['1.74', stable]
rust: ['1.67', stable]
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{matrix.rust}}
- run: cargo build
- run: cargo build --workspace --exclude tools --exclude musli-tests
if: matrix.rust != 'stable'
- run: cargo build --all-targets
if: matrix.rust == 'stable'
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@1.74
- uses: dtolnay/rust-toolchain@1.76
with:
components: clippy
- run: cargo clippy --all-targets --features test -- -D warnings
Expand All @@ -97,7 +97,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@1.74
- uses: dtolnay/rust-toolchain@1.76
with:
components: clippy
- run: cargo run -p tools -- clippy -- -D warnings
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/weekly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
strategy:
fail-fast: false
matrix:
rust: ["1.74", stable]
rust: ["1.67", stable]
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{matrix.rust}}
- run: cargo build --workspace
- run: cargo build --workspace --exclude tools --exclude musli-tests
2 changes: 1 addition & 1 deletion crates/musli-common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "musli-common"
version = "0.0.94"
authors = ["John-John Tedro <udoprog@tedro.se>"]
edition = "2021"
rust-version = "1.74"
rust-version = "1.67"
description = """
Common utilities shared among Müsli encodings.
"""
Expand Down
2 changes: 1 addition & 1 deletion crates/musli-descriptive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "musli-descriptive"
version = "0.0.94"
authors = ["John-John Tedro <udoprog@tedro.se>"]
edition = "2021"
rust-version = "1.74"
rust-version = "1.67"
description = """
A fully self-descriptive format for Müsli.
"""
Expand Down
2 changes: 1 addition & 1 deletion crates/musli-json/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "musli-json"
version = "0.0.94"
authors = ["John-John Tedro <udoprog@tedro.se>"]
edition = "2021"
rust-version = "1.74"
rust-version = "1.67"
description = """
JSON support for Müsli.
"""
Expand Down
2 changes: 1 addition & 1 deletion crates/musli-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "musli-macros"
version = "0.0.94"
authors = ["John-John Tedro <udoprog@tedro.se>"]
edition = "2021"
rust-version = "1.74"
rust-version = "1.67"
description = """
Macros for Müsli.
"""
Expand Down
2 changes: 1 addition & 1 deletion crates/musli-storage/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "musli-storage"
version = "0.0.94"
authors = ["John-John Tedro <udoprog@tedro.se>"]
edition = "2021"
rust-version = "1.74"
rust-version = "1.67"
description = """
Partially upgrade stable format for Müsli suitable for storage.
"""
Expand Down
2 changes: 1 addition & 1 deletion crates/musli-value/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "musli-value"
version = "0.0.94"
authors = ["John-John Tedro <udoprog@tedro.se>"]
edition = "2021"
rust-version = "1.74"
rust-version = "1.67"
description = """
Buffered value support for Müsli.
"""
Expand Down
2 changes: 1 addition & 1 deletion crates/musli-wire/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "musli-wire"
version = "0.0.94"
authors = ["John-John Tedro <udoprog@tedro.se>"]
edition = "2021"
rust-version = "1.74"
rust-version = "1.67"
description = """
Fully upgrade stable format for Müsli suitable for network communication.
"""
Expand Down
2 changes: 1 addition & 1 deletion crates/musli-zerocopy-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "musli-zerocopy-macros"
version = "0.0.94"
authors = ["John-John Tedro <udoprog@tedro.se>"]
edition = "2021"
rust-version = "1.74"
rust-version = "1.67"
description = """
Macros for Müsli zero-copy.
"""
Expand Down
2 changes: 1 addition & 1 deletion crates/musli-zerocopy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "musli-zerocopy"
version = "0.0.94"
authors = ["John-John Tedro <udoprog@tedro.se>"]
edition = "2021"
rust-version = "1.74"
rust-version = "1.67"
description = """
Refreshingly simple zero copy primitives by Müsli.
"""
Expand Down
1 change: 1 addition & 0 deletions crates/musli-zerocopy/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -521,6 +521,7 @@

#![no_std]
#![allow(clippy::module_inception)]
#![allow(clippy::enum_variant_names)]
#![deny(missing_docs)]
#![cfg_attr(all(feature = "nightly", test), feature(repr128))]
#![cfg_attr(all(feature = "nightly", test), allow(incomplete_features))]
Expand Down
2 changes: 1 addition & 1 deletion crates/musli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "musli"
version = "0.0.94"
authors = ["John-John Tedro <udoprog@tedro.se>"]
edition = "2021"
rust-version = "1.74"
rust-version = "1.67"
description = """
Müsli is a flexible and generic binary serialization framework.
"""
Expand Down

0 comments on commit 352067c

Please sign in to comment.