Skip to content

Commit

Permalink
Bump gel-tokio to get better TLS warnings and fix security level (#1512)
Browse files Browse the repository at this point in the history
The SSL configuration wasn't properly updating the tlsSecurity -- update gel-stream and gel-tokio to fix this.
  • Loading branch information
mmastrac authored Feb 27, 2025
1 parent b6b1580 commit 2119f89
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion tests/shared-client-testcases
7 changes: 6 additions & 1 deletion tests/shared-client-tests/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,12 @@ static MUTEX: Mutex<()> = Mutex::new(());
'testcase: for case in connection_testcases.as_array().unwrap() {
let mut testcase = Vec::new();
let case = case.as_object().unwrap();
let name = case.get("name").unwrap().as_str().unwrap();
let name = case
.get("name")
.unwrap()
.as_str()
.unwrap()
.replace(|c: char| !c.is_alphanumeric(), "_");
let opts = case
.get("opts")
.and_then(|v| v.as_object())
Expand Down

0 comments on commit 2119f89

Please sign in to comment.