Skip to content

Commit fbf573b

Browse files
authored
Merge pull request #19 from rust-amplify/error-handling
Improve error handling
2 parents de54955 + bf4c53c commit fbf573b

File tree

5 files changed

+141
-98
lines changed

5 files changed

+141
-98
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ jobs:
8181
strategy:
8282
fail-fast: false
8383
matrix:
84-
toolchain: [ nightly, beta, stable, 1.60.0 ]
84+
toolchain: [ nightly, beta, stable, 1.65.0 ]
8585
steps:
8686
- uses: actions/checkout@v2
8787
- name: Install rust ${{ matrix.toolchain }}

Cargo.lock

+34-34
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "io-reactor"
3-
version = "0.1.2"
3+
version = "0.2.0"
44
description = "Concurrent I/O resource management using reactor pattern"
55
authors = [
66
"Dr. Maxim Orlovsky <[email protected]>",
@@ -10,7 +10,7 @@ keywords = ["reactor", "networking", "patterns", "concurrency", "poll"]
1010
categories = ["concurrency", "asynchronous", "network-programming", "rust-patterns"]
1111
homepage = "https://github.com/rust-amplify"
1212
repository = "https://github.com/rust-amplify/io-reactor"
13-
rust-version = "1.60"
13+
rust-version = "1.65" # Due to if ... let clause
1414
edition = "2021"
1515
license = "Apache-2.0"
1616
readme = "README.md"

0 commit comments

Comments
 (0)