From 6ef3d7995aa4fb75b7725365f274a4311a03915e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Mar 2024 18:12:58 -0500 Subject: [PATCH] Update rustls requirement from 0.22.2 to 0.23.1 & related changes(#36) * Update rustls requirement from 0.22.2 to 0.23.1 Updates the requirements on [rustls](https://github.com/rustls/rustls) to permit the latest version. - [Release notes](https://github.com/rustls/rustls/releases) - [Changelog](https://github.com/rustls/rustls/blob/main/CHANGELOG.md) - [Commits](https://github.com/rustls/rustls/compare/v/0.22.2...v/0.23.1) --- updated-dependencies: - dependency-name: rustls dependency-type: direct:production ... Signed-off-by: dependabot[bot] * install CMake & llvm for macos12 --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Erik Chi <59949156+erikziyunchi@users.noreply.github.com> --- .github/workflows/rust.yml | 7 +++++++ crates/water/Cargo.toml | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index b539537..6ce3c71 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -46,6 +46,13 @@ jobs: steps: - uses: actions/checkout@v3 + - name: Install CMake & LLVM + if: matrix.os == 'macos-12' + run: | + brew update + brew install llvm + brew install cmake + - name: Install Rust uses: actions-rs/toolchain@v1 with: diff --git a/crates/water/Cargo.toml b/crates/water/Cargo.toml index 4a4644d..64016a9 100644 --- a/crates/water/Cargo.toml +++ b/crates/water/Cargo.toml @@ -27,7 +27,7 @@ toml = "0.8.8" once_cell = "1.13.0" bitflags = "2.4.0" bincode = "1.3" -rustls = "0.22.2" +rustls = "0.23.1" rustls-pemfile = "2.0.0" zeroize = { version = "1.5.4", features = ["alloc"] } serde_json = "1.0.107" \ No newline at end of file