Skip to content

Commit

Permalink
Update rustls requirement from 0.22.2 to 0.23.1 & related changes(#36)
Browse files Browse the repository at this point in the history
* 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](rustls/rustls@v/0.22.2...v/0.23.1)

---
updated-dependencies:
- dependency-name: rustls
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>

* install CMake & llvm for macos12

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Erik Chi <[email protected]>
  • Loading branch information
dependabot[bot] and erikziyunchi authored Mar 4, 2024
1 parent 173e532 commit 6ef3d79
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion crates/water/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit 6ef3d79

Please sign in to comment.