Skip to content

Commit

Permalink
Merge pull request #300 from JohnTitor/msrv-1.61
Browse files Browse the repository at this point in the history
Bump MSRV to 1.61
  • Loading branch information
JohnTitor committed Oct 29, 2023
2 parents ac49464 + 1795f7b commit 323366d
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Expand Up @@ -13,7 +13,7 @@ jobs:
fail-fast: false
matrix:
# MSRV and nightly
version: [1.60.0, nightly]
version: [1.61.0, nightly]
steps:
- uses: actions/checkout@v3

Expand All @@ -25,7 +25,7 @@ jobs:
- uses: Swatinem/rust-cache@v2.0.0

- name: Rustfmt check
if: matrix.version == '1.60.0'
if: matrix.version == '1.61.0'
run: |
rustup component add rustfmt
cargo fmt --all -- --check
Expand All @@ -34,7 +34,7 @@ jobs:
run: cargo test --workspace --exclude=phf_codegen_test

- name: phf_macros UI test
if: matrix.version == '1.60.0'
if: matrix.version == '1.61.0'
working-directory: phf_macros_tests
run: cargo test -- --ignored --test-threads=1

Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -11,7 +11,7 @@ It currently uses the
[CHD algorithm](http://cmph.sourceforge.net/papers/esa09.pdf) and can generate
a 100,000 entry map in roughly .4 seconds.

MSRV (minimum supported rust version) is Rust 1.60.
MSRV (minimum supported rust version) is Rust 1.61.

## Usage

Expand Down
2 changes: 1 addition & 1 deletion phf/Cargo.toml
Expand Up @@ -7,7 +7,7 @@ description = "Runtime support for perfect hash function data structures"
repository = "https://github.com/rust-phf/rust-phf"
edition = "2021"
readme = "../README.md"
rust-version = "1.60"
rust-version = "1.61"
categories = ["data-structures", "no-std"]

[lib]
Expand Down
2 changes: 1 addition & 1 deletion phf/examples/unicase-example/Cargo.toml
Expand Up @@ -2,7 +2,7 @@
name = "unicase-example"
version = "0.1.0"
edition = "2021"
rust-version = "1.60"
rust-version = "1.61"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
2 changes: 1 addition & 1 deletion phf/src/lib.rs
Expand Up @@ -5,7 +5,7 @@
//! [CHD algorithm](http://cmph.sourceforge.net/papers/esa09.pdf) and can generate
//! a 100,000 entry map in roughly .4 seconds.
//!
//! MSRV (minimum supported rust version) is Rust 1.60.
//! MSRV (minimum supported rust version) is Rust 1.61.
//!
//! ## Usage
//!
Expand Down
2 changes: 1 addition & 1 deletion phf_codegen/Cargo.toml
Expand Up @@ -7,7 +7,7 @@ description = "Codegen library for PHF types"
repository = "https://github.com/rust-phf/rust-phf"
edition = "2021"
readme = "../README.md"
rust-version = "1.60"
rust-version = "1.61"
categories = ["data-structures"]

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion phf_generator/Cargo.toml
Expand Up @@ -6,7 +6,7 @@ license = "MIT"
description = "PHF generation logic"
repository = "https://github.com/rust-phf/rust-phf"
edition = "2021"
rust-version = "1.60"
rust-version = "1.61"
categories = ["data-structures"]
readme = "README.md"

Expand Down
2 changes: 1 addition & 1 deletion phf_macros/Cargo.toml
Expand Up @@ -7,7 +7,7 @@ license = "MIT"
description = "Macros to generate types in the phf crate"
repository = "https://github.com/rust-phf/rust-phf"
readme = "../README.md"
rust-version = "1.60"
rust-version = "1.61"
categories = ["data-structures"]

[lib]
Expand Down
2 changes: 1 addition & 1 deletion phf_macros_tests/Cargo.toml
Expand Up @@ -3,7 +3,7 @@ name = "phf_macros_tests"
version = "0.1.0"
authors = ["Yuki Okushi <jtitor@2k36.org>"]
edition = "2021"
rust-version = "1.60"
rust-version = "1.61"
repository = "https://github.com/rust-phf/rust-phf"
categories = ["data-structures"]

Expand Down
2 changes: 1 addition & 1 deletion phf_shared/Cargo.toml
Expand Up @@ -6,7 +6,7 @@ license = "MIT"
description = "Support code shared by PHF libraries"
repository = "https://github.com/rust-phf/rust-phf"
edition = "2021"
rust-version = "1.60"
rust-version = "1.61"
categories = ["data-structures"]
readme = "README.md"

Expand Down

0 comments on commit 323366d

Please sign in to comment.