Skip to content

Commit

Permalink
Moving to MSRV 1.36.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-orlovsky committed May 7, 2021
1 parent fa254b9 commit fd7c783
Show file tree
Hide file tree
Showing 11 changed files with 214 additions and 201 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/build.yml
Expand Up @@ -50,6 +50,20 @@ jobs:
with:
command: build
args: --workspace --all-targets --all-features
ancient:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install rust 1.36.0
uses: actions-rs/toolchain@v1
with:
toolchain: 1.36.0
override: true
- name: All features
uses: actions-rs/cargo@v1
with:
command: build
args: --all-features
dependency:
runs-on: ubuntu-latest
steps:
Expand Down
132 changes: 66 additions & 66 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 5 additions & 3 deletions README.md
Expand Up @@ -14,7 +14,9 @@ Amplifying Rust language capabilities: multiple generic trait implementations,
type wrappers, derive macros. Tiny library with zero non-optional dependencies.
Able to work as `no_std`.

Minimum supported rust compiler version (MSRV): 1.41.1
Minimum supported rust compiler version (MSRV): 1.36.0 (if
`stringly_conversions` feature is not used) and 1.41.1 (for
`stringly_conversions` and `serde_str_helpers` sub-crates).

## Main features

Expand Down Expand Up @@ -153,8 +155,8 @@ cargo build --all
cargo test
```

As a reminder, minimum supported rust compiler version (MSRV) is 1.41.1, so it
can be build with either nightly, dev, stable or 1.41+ version of the rust
As a reminder, minimum supported rust compiler version (MSRV) is 1.36.0, so it
can be build with either nightly, dev, stable or 1.36+ version of the rust
compiler. Use `rustup` for getting the proper version, or add `+toolchain`
parameter to both `cargo build` and `cargo test` commands.

0 comments on commit fd7c783

Please sign in to comment.