Skip to content

Commit 77ee50d

Browse files
committed
Update minimum supported Rust version to 1.59.0
This change updates the minimum supported Rust version to 1.59.0. We need this version because the transitive dependency on time requires it.
1 parent ea3dc8d commit 77ee50d

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
fail-fast: false
1818
matrix:
19-
rust: [1.57.0, stable]
19+
rust: [1.59.0, stable]
2020
steps:
2121
- uses: actions/checkout@v3
2222
- uses: actions-rs/toolchain@v1

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Unreleased
22
----------
33
- Switched to using GitHub Actions as CI provider
4-
- Bumped minimum supported Rust version to `1.57`
4+
- Bumped minimum supported Rust version to `1.59`
55
- Bumped `tokio-tungstenite` dependency to `0.17`
66

77

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "websocket-util"
33
version = "0.10.1"
44
authors = ["Daniel Mueller <[email protected]>"]
55
edition = "2018"
6-
rust-version = "1.57"
6+
rust-version = "1.59"
77
license = "GPL-3.0-or-later"
88
homepage = "https://github.com/d-e-s-o/websocket-util"
99
repository = "https://github.com/d-e-s-o/websocket-util.git"

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
[![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)
33
[![crates.io](https://img.shields.io/crates/v/websocket-util.svg)](https://crates.io/crates/websocket-util)
44
[![Docs](https://docs.rs/websocket-util/badge.svg)](https://docs.rs/websocket-util)
5-
[![rustc](https://img.shields.io/badge/rustc-1.57+-blue.svg)](https://blog.rust-lang.org/2021/12/02/Rust-1.57.0.html)
5+
[![rustc](https://img.shields.io/badge/rustc-1.59+-blue.svg)](https://blog.rust-lang.org/2022/02/24/Rust-1.59.0.html)
66

77
websocket-util
88
==============

0 commit comments

Comments
 (0)