Skip to content

Commit

Permalink
Bump minimal version to 1.75
Browse files Browse the repository at this point in the history
  • Loading branch information
dbrgn committed Sep 22, 2024
1 parent 96d3451 commit d62fde8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .clippy.toml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
msrv = "1.70.0"
msrv = "1.75.0"
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
name: CI

env:
RUST_VERSION: "1.70.0"
RUST_VERSION: "1.75.0"

jobs:
test:
Expand Down
4 changes: 2 additions & 2 deletions src/connection.rs
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ pub(crate) async fn send_simple(
// Send request
log::trace!("Sending HTTP request");
let res = client
.post(&format!("{}/send_simple", endpoint))
.post(format!("{}/send_simple", endpoint))
.form(&params)
.header("accept", "application/json")
.send()
Expand Down Expand Up @@ -139,7 +139,7 @@ pub(crate) async fn send_e2e(
// Send request
log::trace!("Sending HTTP request");
let res = client
.post(&format!("{}/send_e2e", endpoint))
.post(format!("{}/send_e2e", endpoint))
.form(&params)
.header("accept", "application/json")
.send()
Expand Down

0 comments on commit d62fde8

Please sign in to comment.