Skip to content

Commit

Permalink
Merge pull request #19 from rust-amplify/error-handling
Browse files Browse the repository at this point in the history
Improve error handling
  • Loading branch information
dr-orlovsky authored May 12, 2023
2 parents de54955 + bf4c53c commit fbf573b
Show file tree
Hide file tree
Showing 5 changed files with 141 additions and 98 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
strategy:
fail-fast: false
matrix:
toolchain: [ nightly, beta, stable, 1.60.0 ]
toolchain: [ nightly, beta, stable, 1.65.0 ]
steps:
- uses: actions/checkout@v2
- name: Install rust ${{ matrix.toolchain }}
Expand Down
68 changes: 34 additions & 34 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "io-reactor"
version = "0.1.2"
version = "0.2.0"
description = "Concurrent I/O resource management using reactor pattern"
authors = [
"Dr. Maxim Orlovsky <orlovsky@ubideco.org>",
Expand All @@ -10,7 +10,7 @@ keywords = ["reactor", "networking", "patterns", "concurrency", "poll"]
categories = ["concurrency", "asynchronous", "network-programming", "rust-patterns"]
homepage = "https://github.com/rust-amplify"
repository = "https://github.com/rust-amplify/io-reactor"
rust-version = "1.60"
rust-version = "1.65" # Due to if ... let clause
edition = "2021"
license = "Apache-2.0"
readme = "README.md"
Expand Down
Loading

0 comments on commit fbf573b

Please sign in to comment.