Skip to content

Commit

Permalink
cargo: add missing feature "blocking", since webhook challenges uses …
Browse files Browse the repository at this point in the history
…blocking reqwest

tldr, 5ba6dc8 upgraded reqwest from 0.11 -> 0.12. Reqwest fixed optional
dependencies internally to make deps _actually_ optional, which then
uncovered the mistake here of the missing feature-flag.

see: https://github.com/seanmonstar/reqwest/releases/tag/v0.12.0
  • Loading branch information
johanot committed Oct 4, 2024
1 parent b2c6de8 commit 4a65d6e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ vaultrs-login = "0"
url = "2"
chrono = "0"
num-traits = "0"
reqwest = { version = "0", features = ["json"] }
reqwest = { version = "0", features = ["blocking", "json"] }

[profile.release]
panic = "abort"
Expand Down

0 comments on commit 4a65d6e

Please sign in to comment.