From 8dbce6197f08eb13a4e3a571e5d48e30330fde1c Mon Sep 17 00:00:00 2001 From: Emil Ernerfeldt Date: Mon, 26 Feb 2024 13:11:15 +0100 Subject: [PATCH] Release 0.5.0 - Add connect `Options` --- .github/workflows/rust.yml | 6 +++--- ewebsock/Cargo.toml | 2 +- rust-toolchain | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 7959ba1..c901090 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -17,7 +17,7 @@ jobs: - uses: actions-rs/toolchain@v1 with: profile: minimal - toolchain: 1.72.0 + toolchain: 1.73.0 override: true components: rustfmt, clippy @@ -88,7 +88,7 @@ jobs: - uses: actions-rs/toolchain@v1 with: profile: minimal - toolchain: 1.72.0 + toolchain: 1.73.0 target: wasm32-unknown-unknown override: true @@ -109,5 +109,5 @@ jobs: - uses: EmbarkStudios/cargo-deny-action@v1 with: - rust-version: "1.72.0" + rust-version: "1.73.0" log-level: error diff --git a/ewebsock/Cargo.toml b/ewebsock/Cargo.toml index 6db4041..9edb7e4 100644 --- a/ewebsock/Cargo.toml +++ b/ewebsock/Cargo.toml @@ -4,7 +4,7 @@ version = "0.5.0" authors = ["Emil Ernerfeldt "] description = "WebSocket client that works natively and on the web (WASM)" edition = "2021" -rust-version = "1.72" +rust-version = "1.73" license = "MIT OR Apache-2.0" readme = "../README.md" homepage = "https://github.com/rerun-io/ewebsock" diff --git a/rust-toolchain b/rust-toolchain index 7285633..87c96ef 100644 --- a/rust-toolchain +++ b/rust-toolchain @@ -5,6 +5,6 @@ # to the user in the error, instead of "error: invalid channel name '[toolchain]'". [toolchain] -channel = "1.72.0" +channel = "1.73.0" components = [ "rustfmt", "clippy" ] targets = [ "wasm32-unknown-unknown" ]