Skip to content

Commit

Permalink
Update minimum supported Rust version to 1.59.0
Browse files Browse the repository at this point in the history
This change updates the minimum supported Rust version to 1.59.0. We
need this version because the transitive dependency on time requires it.
  • Loading branch information
d-e-s-o committed Dec 25, 2022
1 parent 59286a2 commit bce657e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
rust: [1.57.0, stable]
rust: [1.59.0, stable]
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Unreleased
----------
- Switched to using GitHub Actions as CI provider
- Bumped minimum supported Rust version to `1.57`
- Bumped minimum supported Rust version to `1.59`
- Bumped `tokio-tungstenite` dependency to `0.17`


Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "websocket-util"
version = "0.10.1"
authors = ["Daniel Mueller <[email protected]>"]
edition = "2018"
rust-version = "1.57"
rust-version = "1.59"
license = "GPL-3.0-or-later"
homepage = "https://github.com/d-e-s-o/websocket-util"
repository = "https://github.com/d-e-s-o/websocket-util.git"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
[![coverage](https://codecov.io/gh/d-e-s-o/websocket-util/branch/main/graph/badge.svg)](https://codecov.io/gh/d-e-s-o/websocket-util)
[![crates.io](https://img.shields.io/crates/v/websocket-util.svg)](https://crates.io/crates/websocket-util)
[![Docs](https://docs.rs/websocket-util/badge.svg)](https://docs.rs/websocket-util)
[![rustc](https://img.shields.io/badge/rustc-1.57+-blue.svg)](https://blog.rust-lang.org/2021/12/02/Rust-1.57.0.html)
[![rustc](https://img.shields.io/badge/rustc-1.59+-blue.svg)](https://blog.rust-lang.org/2022/02/24/Rust-1.59.0.html)

websocket-util
==============
Expand Down

0 comments on commit bce657e

Please sign in to comment.