Skip to content

Commit

Permalink
Merge pull request #6 from HadrienG2/bump-msrv
Browse files Browse the repository at this point in the history
Bump MSRV to account for hwlocality adoption
  • Loading branch information
HadrienG2 authored Jan 4, 2024
2 parents a0f211e + 4b65807 commit 5b62594
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ concurrency:
env:
RUSTFLAGS: -D warnings
RUSTDOCFLAGS: -D warnings
MINIMAL_RUST: 1.70.0 # Minimal Supported Rust Version
MINIMAL_RUST: 1.71.0 # Minimal Supported Rust Version

jobs:
# Format doesn't depend on configuration. Lints do, but there's no OS-specific
Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:
- uses: awalsh128/cache-apt-pkgs-action@latest
with:
version: 1.0
packages: libhwloc-dev
packages: libhwloc-dev libudev-dev

- name: Set up stable toolchain
if: github.event_name != 'schedule'
Expand Down Expand Up @@ -108,7 +108,7 @@ jobs:
- uses: awalsh128/cache-apt-pkgs-action@latest
with:
version: 1.0
packages: libhwloc-dev
packages: libhwloc-dev libudev-dev

- name: Set up toolchain
uses: actions-rust-lang/setup-rust-toolchain@v1
Expand Down Expand Up @@ -149,7 +149,7 @@ jobs:
- uses: awalsh128/cache-apt-pkgs-action@latest
with:
version: 1.0
packages: libhwloc-dev
packages: libhwloc-dev libudev-dev

- name: Set up toolchain
uses: actions-rust-lang/setup-rust-toolchain@v1
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ name = "iterator_ilp"
version = "2.0.6"
authors = ["Hadrien G. <knights_of_ni@gmx.com>"]
edition = "2021"
rust-version = "1.70.0"
rust-version = "1.71.0"
description = "Iterator extensions for instruction-parallel reductions"
repository = "https://github.com/HadrienG2/iterator_ilp"
license = "MPL-2.0"
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
[![On crates.io](https://img.shields.io/crates/v/iterator_ilp.svg)](https://crates.io/crates/iterator_ilp)
[![On docs.rs](https://docs.rs/iterator_ilp/badge.svg)](https://docs.rs/iterator_ilp/)
[![Continuous Integration](https://img.shields.io/github/actions/workflow/status/HadrienG2/iterator_ilp/ci.yml?branch=master)](https://github.com/HadrienG2/iterator_ilp/actions?query=workflow%3A%22Continuous+Integration%22)
![Requires rustc 1.70.0+](https://img.shields.io/badge/rustc-1.70.0+-lightgray.svg)
![Requires rustc
1.71.0+](https://img.shields.io/badge/rustc-1.71.0+-lightgray.svg)

Ever wondered why iterator reduction methods like `sum()` perform badly on
floating-point data, or why nontrivial search methods like `any()` do not
Expand Down

0 comments on commit 5b62594

Please sign in to comment.