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:/seanmonstar/reqwest/releases/tag/v0.12.0
  • Loading branch information
johanot committed Oct 4, 2024
1 parent b2c6de8 commit eade607
Showing 1 changed file with 1 addition and 1 deletion.
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 eade607

Please sign in to comment.