Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update rustls requirement from 0.22.2 to 0.23.1 #36

Merged
merged 2 commits into from
Mar 4, 2024
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
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
erikziyunchi marked this conversation as resolved.
Show resolved Hide resolved

- 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"
Loading