Skip to content

Commit

Permalink
raise the memchr version
Browse files Browse the repository at this point in the history
breaking change: this raises the MSRV to Rust 1.41.1
  • Loading branch information
Geal committed Jun 24, 2021
1 parent 550e2e6 commit eb4c4b8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: CI
on: [push, pull_request]

env:
RUST_MINVERSION: 1.37.0
RUST_MINVERSION: 1.41.1

jobs:
test:
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ version = "^1.0"
optional = true

[dependencies.memchr]
version = ">=2.0, <2.4"
version = "2.0"
default-features = false

[dependencies.lexical-core]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ Some benchmarks are available on [Github](https://github.com/Geal/nom_benchmarks

## Rust version requirements

The 6.0 series of nom requires **Rustc version 1.44 or greater** (compatible with 1.37 if building without the `alloc` or `std` features, ie `--no-default-features --features="regex,lexical"`).
The 6.0 series of nom requires **Rustc version 1.44 or greater** (compatible with 1.41.1 if building without the `alloc` or `std` features, ie `--no-default-features --features="regex,lexical"`).

Travis CI always has a build with a pinned version of Rustc matching the oldest supported Rust release.
The current policy is that this will only be updated in the next major nom release.
Expand Down

0 comments on commit eb4c4b8

Please sign in to comment.