chore: bump reqwest 0.12 → 0.13 and inquire 0.6 → 0.9#196
Merged
Conversation
Refs #195 - pg-cli, pg-pkg: reqwest 0.12 → 0.13 (no API changes needed). - pg-cli: inquire 0.6 → 0.9 (Select/Text APIs unchanged). - cargo update to refresh transitives. rand 0.8 → 0.10 deferred: ibe 0.3.0 and ibs 0.4.0 still depend on rand_core 0.6, so a workspace rand bump won't type-check against the ibe/ibs APIs until those crates upgrade.
rubenhensen
approved these changes
May 19, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Refs #195.
What
pg-cli,pg-pkg:reqwest0.12 → 0.13. No API changes needed.pg-cli:inquire0.6 → 0.9. TheSelect/Text::prompt()calls indecrypt.rsare unaffected.cargo updateto refresh transitives.What's deferred
rand0.8 → 0.10 — blocked upstream.ibe0.3.0 andibs0.4.0 (this org's own crates) still depend onrand_core0.6, so passing a rand 0.10 RNG into ibe/ibs APIs won't type-check. The bump needs an ibe + ibs release first.Verification
cargo build --workspace✅cargo test --manifest-path pg-core/Cargo.toml --features test,rust,stream✅ (matches CI)cargo test -p pg-cli,-p pg-pkg,-p pg-ffi✅cargo fmt --all -- --check✅cargo audit— only pre-existingtokio-io0.1.13 unmaintained warning (transitive via futures-util); not introduced by this PR.Reviewer quickstart
```
git fetch origin && git checkout chore/deps-195 && cargo build --workspace
```