Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,10 @@ jobs:
run: cargo update --package polling --precise 3.10.0
- name: Pin last async-lock release supporting our msrv of Rust 1.68
run: cargo update --package async-lock --precise 3.4.1
- name: Pin last unicode-ident release supporting our msrv of Rust 1.68
run: cargo update --package unicode-ident --precise 1.0.22
- name: Pin last syn release supporting our msrv of Rust 1.68
run: cargo update --package syn@2.0.117 --precise 2.0.114

# build
- name: cargo check x11rb-protocol with all features
Expand Down
2 changes: 1 addition & 1 deletion xtrace-example/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ async fn handle_client_impl(client: Async<TcpStream>) -> IOResult<()> {

// try_join polls both futures and returns an error once one of them returns an error.
// (It also returns a result once both futures are done, but that should not matter here).
futures_util::try_join!(future1, future2)?;
let _ = futures_util::try_join!(future1, future2)?;

Ok(())
}
Expand Down