Bump the rust-dependencies group with 12 updates
Type: Pull Request
State: Open
![dependabot[bot]](https://github.com/dependabot.png)
Association: Contributor
Comments: 0
(2 months ago)
(2 months ago)
dependencies rust
Bumps the rust-dependencies group with 12 updates:
Package | From | To |
---|---|---|
base64 | 0.13.1 |
0.22.1 |
bitflags | 1.3.2 |
2.9.0 |
rand | 0.8.5 |
0.9.1 |
serde_with | 3.13.0 |
3.14.0 |
thiserror | 1.0.69 |
2.0.12 |
webpki-roots | 0.26.11 |
1.0.0 |
pbkdf2 | 0.11.0 |
0.12.2 |
reqwest | 0.12.20 |
0.12.22 |
tokio | 1.45.1 |
1.46.1 |
cc | 1.2.27 |
1.2.29 |
h2 | 0.4.10 |
0.4.11 |
serde_with_macros | 3.13.0 |
3.14.0 |
Updates base64
from 0.13.1 to 0.22.1
Changelog
Sourced from base64's changelog.
0.22.1
- Correct the symbols used for the predefined
alphabet::BIN_HEX
.0.22.0
DecodeSliceError::OutputSliceTooSmall
is now conservative rather than precise. That is, the error will only occur if the decoded output cannot fit, meaning thatEngine::decode_slice
can now be used with exactly-sized output slices. As part of this,Engine::internal_decode
now returnsDecodeSliceError
instead ofDecodeError
, but that is not expected to affect any external callers.DecodeError::InvalidLength
now refers specifically to the number of valid symbols being invalid (i.e.len % 4 == 1
), rather than just the number of input bytes. This avoids confusing scenarios when based on interpretation you could make a case for eitherInvalidLength
orInvalidByte
being appropriate.- Decoding is somewhat faster (5-10%)
0.21.7
- Support getting an alphabet's contents as a str via
Alphabet::as_str()
0.21.6
- Improved introductory documentation and example
0.21.5
- Add
Debug
andClone
impls for the general purpose Engine0.21.4
- Make
encoded_len
const
, allowing the creation of arrays sized to encode compile-time-known data lengths0.21.3
- Implement
source
instead ofcause
on Error types- Roll back MSRV to 1.48.0 so Debian can continue to live in a time warp
- Slightly faster chunked encoding for short inputs
- Decrease binary size
0.21.2
- Rollback MSRV to 1.57.0 -- only dev dependencies need 1.60, not the main code
0.21.1
- Remove the possibility of panicking during decoded length calculations
DecoderReader
no longer sometimes erroneously ignores padding #226Breaking changes
Engine.internal_decode
return type changed- Update MSRV to 1.60.0
0.21.0
... (truncated)
Commits
e144006
v0.22.164cca59
Merge pull request #271 from JobanSD/patch-1838355e
Correct BinHex 4.0 alphabet according to specificationsbf15ccf
Merge pull request #270 from marshallpierce/mp/clippyfc6aabe
Appease clippy9a518a2
Merge pull request #267 from bdura/patch-1d96c80f
Merge branch 'marshallpierce:master' into patch-15d70ba7
Merge pull request #269 from marshallpierce/mp/decode-preciselyefb6c00
Release notes2b91084
Add some tests to boost coverage- Additional commits viewable in compare view
Updates bitflags
from 1.3.2 to 2.9.0
Release notes
Sourced from bitflags's releases.
2.9.0
What's Changed
Flags
trait: addclear(&mut self)
method by@wysiwys
in bitflags/bitflags#437- Fix up UI tests by
@KodrAus
in bitflags/bitflags#438- Prepare for 2.9.0 release by
@KodrAus
in bitflags/bitflags#439Full Changelog: https://github.com/bitflags/bitflags/compare/2.8.0...2.9.0
2.8.0
What's Changed
- feat(core): Add bitflags_match macro for bitflag matching by
@YuniqueUnic
in bitflags/bitflags#423- Finalize bitflags_match by
@KodrAus
in bitflags/bitflags#431- Prepare for 2.8.0 release by
@KodrAus
in bitflags/bitflags#432New Contributors
@YuniqueUnic
made their first contribution in bitflags/bitflags#423Full Changelog: https://github.com/bitflags/bitflags/compare/2.7.0...2.8.0
2.7.0
What's Changed
- Fix
clippy::doc_lazy_continuation
lints by@waywardmonkeys
in bitflags/bitflags#414- Run clippy on extra features in CI. by
@waywardmonkeys
in bitflags/bitflags#415- Fix CI: trybuild refresh, allow some clippy restrictions. by
@waywardmonkeys
in bitflags/bitflags#417- Update zerocopy version in example by
@KodrAus
in bitflags/bitflags#422- Add method to check if unknown bits are set by
@wysiwys
in bitflags/bitflags#426- Update error messages by
@KodrAus
in bitflags/bitflags#427- Add
truncate(&mut self)
method to unset unknown bits by@wysiwys
in bitflags/bitflags#428- Update error messages by
@KodrAus
in bitflags/bitflags#429- Prepare for 2.7.0 release by
@KodrAus
in bitflags/bitflags#430New Contributors
@wysiwys
made their first contribution in bitflags/bitflags#426Full Changelog: https://github.com/bitflags/bitflags/compare/2.6.0...2.7.0
2.6.0
What's Changed
- Sync CHANGELOG.md with github release notes by
@dextero
in bitflags/bitflags#402- Update error messages and zerocopy by
@KodrAus
in bitflags/bitflags#403- Bump minimum declared versions of dependencies by
@dextero
in bitflags/bitflags#404- chore(deps): bump serde_derive and bytemuck versions by
@joshka
in bitflags/bitflags#405- add OSFF Scorecard workflow by
@KodrAus
in bitflags/bitflags#396- Update stderr messages by
@KodrAus
in bitflags/bitflags#408- Fix typo by
@waywardmonkeys
in bitflags/bitflags#410- Allow specifying outer attributes in impl mode by
@KodrAus
in bitflags/bitflags#411- Prepare for 2.6.0 release by
@KodrAus
in bitflags/bitflags#412New Contributors
... (truncated)
Changelog
Sourced from bitflags's changelog.
2.9.0
What's Changed
Flags
trait: addclear(&mut self)
method by@wysiwys
in bitflags/bitflags#437- Fix up UI tests by
@KodrAus
in bitflags/bitflags#438Full Changelog: https://github.com/bitflags/bitflags/compare/2.8.0...2.9.0
2.8.0
What's Changed
- feat(core): Add bitflags_match macro for bitflag matching by
@YuniqueUnic
in bitflags/bitflags#423- Finalize bitflags_match by
@KodrAus
in bitflags/bitflags#431New Contributors
@YuniqueUnic
made their first contribution in bitflags/bitflags#423Full Changelog: https://github.com/bitflags/bitflags/compare/2.7.0...2.8.0
2.7.0
What's Changed
- Fix
clippy::doc_lazy_continuation
lints by@waywardmonkeys
in bitflags/bitflags#414- Run clippy on extra features in CI. by
@waywardmonkeys
in bitflags/bitflags#415- Fix CI: trybuild refresh, allow some clippy restrictions. by
@waywardmonkeys
in bitflags/bitflags#417- Update zerocopy version in example by
@KodrAus
in bitflags/bitflags#422- Add method to check if unknown bits are set by
@wysiwys
in bitflags/bitflags#426- Update error messages by
@KodrAus
in bitflags/bitflags#427- Add
truncate(&mut self)
method to unset unknown bits by@wysiwys
in bitflags/bitflags#428- Update error messages by
@KodrAus
in bitflags/bitflags#429New Contributors
@wysiwys
made their first contribution in bitflags/bitflags#426Full Changelog: https://github.com/bitflags/bitflags/compare/2.6.0...2.7.0
2.6.0
What's Changed
- Sync CHANGELOG.md with github release notes by
@dextero
in bitflags/bitflags#402- Update error messages and zerocopy by
@KodrAus
in bitflags/bitflags#403- Bump minimum declared versions of dependencies by
@dextero
in bitflags/bitflags#404- chore(deps): bump serde_derive and bytemuck versions by
@joshka
in bitflags/bitflags#405- add OSFF Scorecard workflow by
@KodrAus
in bitflags/bitflags#396- Update stderr messages by
@KodrAus
in bitflags/bitflags#408- Fix typo by
@waywardmonkeys
in bitflags/bitflags#410- Allow specifying outer attributes in impl mode by
@KodrAus
in bitflags/bitflags#411New Contributors
... (truncated)
Commits
e197bf5
Merge pull request #439 from KodrAus/cargo/2.9.08df6e80
prepare for 2.9.0 releasee92f0ae
Merge pull request #438 from KodrAus/fix/ui-tests226ff75
fix up UI tests2170a26
Merge pull request #437 from wysiwys/wysiwys/add-clear-method76dde58
add tests forclear()
trait methodce5d420
addclear()
method to trait9e45d36
Merge pull request #434 from bitflags/KodrAus-patch-1617645a
pin checkout action for miri job2c836f2
Merge pull request #433 from bitflags/ci/remove-scorecard- Additional commits viewable in compare view
Updates rand
from 0.8.5 to 0.9.1
Changelog
Sourced from rand's changelog.
[0.9.1] - 2025-04-17
Security and unsafe
Fixes
- Fix feature
simd_support
for recent nightly rust (#1586)Changes
- Allow
fn rand::seq::index::sample_weighted
andfn IndexedRandom::choose_multiple_weighted
to return fewer thanamount
results (#1623), reverting an undocumented change (#1382) to the previous release.Additions
[0.9.0] - 2025-01-27
Security and unsafe
- Policy: "rand is not a crypto library" (#1514)
- Remove fork-protection from
ReseedingRng
andThreadRng
. Instead, it is recommended to callThreadRng::reseed
on fork. (#1379)- Use
zerocopy
to replace someunsafe
code (#1349, #1393, #1446, #1502)Dependencies
- Bump the MSRV to 1.63.0 (#1207, #1246, #1269, #1341, #1416, #1536); note that 1.60.0 may work for dependents when using
--ignore-rust-version
- Update to
rand_core
v0.9.0 (#1558)Features
- Support
std
feature withoutgetrandom
orrand_chacha
(#1354)- Enable feature
small_rng
by default (#1455)- Remove implicit feature
rand_chacha
; usestd_rng
instead. (#1473)- Rename feature
serde1
toserde
(#1477)- Rename feature
getrandom
toos_rng
(#1537)- Add feature
thread_rng
(#1547)API changes: rand_core traits
- Add fn
RngCore::read_adapter
implementingstd::io::Read
(#1267)- Add trait
CryptoBlockRng: BlockRngCore
; maketrait CryptoRng: RngCore
(#1273)- Add traits
TryRngCore
,TryCryptoRng
(#1424, #1499)- Rename
fn SeedableRng::from_rng
->try_from_rng
and add infallible variantfn from_rng
(#1424)- Rename
fn SeedableRng::from_entropy
->from_os_rng
and add fallible variantfn try_from_os_rng
(#1424)- Add bounds
Clone
andAsRef
to associated typeSeedableRng::Seed
(#1491)API changes: Rng trait and top-level fns
- Rename fn
rand::thread_rng()
torand::rng()
and remove from the prelude (#1506)- Remove fn
rand::random()
from the prelude (#1506)- Add top-level fns
random_iter
,random_range
,random_bool
,random_ratio
,fill
(#1488)- Re-introduce fn
Rng::gen_iter
asrandom_iter
(#1305, #1500)- Rename fn
Rng::gen
torandom
to avoid conflict with the newgen
keyword in Rust 2024 (#1438)- Rename fns
Rng::gen_range
torandom_range
,gen_bool
torandom_bool
,gen_ratio
torandom_ratio
(#1505)- Annotate panicking methods with
#[track_caller]
(#1442, #1447)
... (truncated)
Commits
ec6d5c0
Prepare rand_core v0.9.1 (#1591)6a06056
rand_core: introduce an UnwrapMut wrapper (#1589)8929123
AddAlphabetic
distribution (#1587)06b1642
Remove unnecessary underscore from `impl<T, const N: usize> Distribution<[T; ...49d76cd
rename extract to extract_lane (#1586)e0a70fd
Change to usearray::from_fn
inDistribution\<[T; N]> for StandardUniform
...0bc3f65
Move rand distr (#1577)2677c49
Revise "not a crypto library" policy and SECURITY.md (#1565)bfd1826
SeedableRng docs: add note on (lack of) reproducibility (#1572)c01aee7
Fix some links (#1571)- Additional commits viewable in compare view
Updates serde_with
from 3.13.0 to 3.14.0
Release notes
Sourced from serde_with's releases.
serde_with v3.14.0
Added
- Add support for
Range
,RangeFrom
,RangeTo
,RangeInclusive
(#851)RangeToInclusive
is currently unsupported by serde.- Add
schemars
implementations forBound
,Range
,RangeFrom
,RangeTo
,RangeInclusive
.- Added support for
schemars
v1 under theschemars_1
feature flag
Commits
16ea265
Bump version to 3.14 (#865)6b963ec
Bump version to 3.14ff8df7a
Dead code cleanup (#864)e3a5f16
Fix function naming scheme20a8cf6
Remove unused derives and dead functions in schemars codeefe145b
Extract common DropGuard struct and NumberExt trait1c3a1d3
Remove unused derives from internal Content typec77b02f
Add support forschemars
v1 (#863)e44f5df
Cleanup schemars tests (#862)17f3555
Add support forschemars
v1- Additional commits viewable in compare view
Updates thiserror
from 1.0.69 to 2.0.12
Release notes
Sourced from thiserror's releases.
2.0.12
- Prevent elidable_lifetime_names pedantic clippy lint in generated impl (#413)
2.0.11
2.0.10
- Support errors containing a generic type parameter's associated type in a field (#408)
2.0.9
- Work around
missing_inline_in_public_items
clippy restriction being triggered in macro-generated code (#404)2.0.8
- Improve support for macro-generated
derive(Error)
call sites (#399)2.0.7
2.0.6
- Suppress deprecation warning on generated From impls (#396)
2.0.5
- Prevent deprecation warning on generated impl for deprecated type (#394)
2.0.4
- Eliminate needless_lifetimes clippy lint in generated
From
impls (#391, thanks@matt-phylum
)2.0.3
- Support the same Path field being repeated in both Debug and Display representation in error message (#383)
- Improve error message when a format trait used in error message is not implemented by some field (#384)
2.0.2
- Fix hang on invalid input inside #[error(...)] attribute (#382)
2.0.1
- Support errors that contain a dynamically sized final field (#375)
- Improve inference of trait bounds for fields that are interpolated multiple times in an error message (#377)
2.0.0
Breaking changes
Referencing keyword-named fields by a raw identifier like
{r#type}
inside a format string is no longer accepted; simply use the unraw name like{type}
(#347)This aligns thiserror with the standard library's formatting macros, which gained support for implicit argument capture later than the release of this feature in thiserror 1.x.
#[derive(Error, Debug)] #[error("... {type} ...")] // Before: {r#type} pub struct Error { pub r#type: Type,
... (truncated)
Commits
95a5126
Release 2.0.1276490f7
Merge pull request #413 from dtolnay/elidablelifetime9f27b76
Ignore elidable_lifetime_names pedantic clippy lintdaf2a6f
Resolve some elidable_lifetime_names pedantic clippy lint5f07160
Point standard library links to stable6706a51
Convert html links to intra-doc links2706873
More precise gitignore patterns70bc20d
Remove **/*.rs.bk from project-specific gitignore0f532e3
Release 2.0.113d15543
Merge pull request #410 from dtolnay/testnostd- Additional commits viewable in compare view
Updates webpki-roots
from 0.26.11 to 1.0.0
Release notes
Sourced from webpki-roots's releases.
1.0.0
After 51 releases over about nine years, this is the first stable release of the
webpki-roots
andwebpki-root-certs
crates.The 1.0.0 release is functionally equal to the 0.26.10 release. We will make a 0.26.11 release that uses 1.0.0 using the semver trick.
What's Changed
- Refine CI workflow triggers by
@djc
in rustls/webpki-roots#97- Prepare 1.0.0 by
@ctz
in rustls/webpki-roots#98Full Changelog: https://github.com/rustls/webpki-roots/compare/v/0.26.10...v/1.0.0
Commits
d37be11
Declare crates as 1.0.0- See full diff in compare view
Updates pbkdf2
from 0.11.0 to 0.12.2
Commits
165f4a8
pbkdf2 v0.12.2 (#443)cb56812
pbkdf2: useRECOMMENDED_ROUNDS
inDefault
impl (#442)795c424
argon2: add benchmarks using criterion (#437)3571f10
argon2: addParams::DEFAULT
constant (#439)b0cc634
scrypt: Update docs for recommended log_n parameter (#435)c8c1114
password-auth v0.3.0 (#434)54d68a4
password-auth: deriveEq
/PartialEq
on*Error
(#433)5e7e8c7
password-auth: renameError
(back) toVerifyError
(#432)58975ef
password-auth: fixis_hash_obsolete
docs (#431)2d45c3e
password-auth v0.2.0 (#430)- Additional commits viewable in compare view
Updates reqwest
from 0.12.20 to 0.12.22
Release notes
Sourced from reqwest's releases.
v0.12.22
tl;dr
- Fix socks proxies when resolving IPv6 destinations.
What's Changed
- fix(socks): bracket IPv6 addresses when formatting destination host by
@0x676e67
in seanmonstar/reqwest#2753- Prepare v0.12.22 by
@seanmonstar
in seanmonstar/reqwest#2754Full Changelog: https://github.com/seanmonstar/reqwest/compare/v0.12.21...v0.12.22
v0.12.21
tl;dr
- Fix socks proxy to use
socks4a://
instead ofsocks4h://
.- Fix
Error::is_timeout()
to check for hyper and IO timeouts too.- Fix request
Error
to again include URLs when possible.- Fix socks connect error to include more context.
- (wasm) implement
Default
forBody
.What's Changed
- chore: remove unused slab dep by
@seanmonstar
in seanmonstar/reqwest#2729- docs: mention requiring Tokio by
@seanmonstar
in seanmonstar/reqwest#2731- Fix Typos in Comments for Multipart and Redirect Tests by
@leopardracer
in seanmonstar/reqwest#2738- fix: request errors should include url by
@seanmonstar
in seanmonstar/reqwest#2741- fix: consider timeout from hyper::Error by
@flisky
in seanmonstar/reqwest#2742- feat: add Default impl for wasm::Body by
@jpopesculian
in seanmonstar/reqwest#2746- fix: Fix SOCKS4a proxy protocol matching by
@0x676e67
in seanmonstar/reqwest#2732- fix: add more context and description to SOCKS errors by
@seanmonstar
in seanmonstar/reqwest#2750- Prepare v0.12.21 by
@seanmonstar
in seanmonstar/reqwest#2751New Contributors
@leopardracer
made their first contribution in seanmonstar/reqwest#2738@jpopesculian
made their first contribution in seanmonstar/reqwest#2746Full Changelog: https://github.com/seanmonstar/reqwest/compare/v0.12.20...v0.12.21
Changelog
Sourced from reqwest's changelog.
v0.12.22
- Fix socks proxies when resolving IPv6 destinations.
v0.12.21
- Fix socks proxy to use
socks4a://
instead ofsocks4h://
.- Fix
Error::is_timeout()
to check for hyper and IO timeouts too.- Fix request
Error
to again include URLs when possible.- Fix socks connect error to include more context.
- (wasm) implement
Default
forBody
.
Commits
e6e2d8a
v0.12.22a9ab0fa
fix(socks): bracket IPv6 addresses when formatting destination host (#2753)b739726
v0.12.21d9ecdc1
fix: add more context and description to SOCKS errors (#2750)d4c9eec
fix: look for socks4a instead of socks4h (#2732)d793ed2
(wasm) feat: add Default impl for wasm::Body (#2746)4cb2866
fix: Error::is_timeout() checks for hyper::Error::is_timeout() (#2742)1794d99
fix: request errors should include url (#2741)9edbd2e
tests: fix typos in multipart and redirect tests (#2738)e03d6f4
docs: mention requiring Tokio (#2731)- Additional commits viewable in compare view
Updates tokio
from 1.45.1 to 1.46.1
Release notes
Sourced from tokio's releases.
Tokio v1.46.1
1.46.1 (July 4th, 2025)
This release fixes incorrect spawn locations in runtime task hooks for tasks spawned using
tokio::spawn
rather thanRuntime::spawn
. This issue only effected the spawn location inTaskMeta::spawned_at
, and did not effect task locations in Tracing events.Unstable
- runtime: add
TaskMeta::spawn_location
tracking where a task was spawned (#7440)Tokio v1.46.0
1.46.0 (July 2nd, 2025)
Fixed
- net: fixed
TcpStream::shutdown
incorrectly returning an error on macOS (#7290)Added
- sync:
mpsc::OwnedPermit::{same_channel, same_channel_as_sender}
methods (#7389)- macros:
biased
option forjoin!
andtry_join!
, similar toselect!
(#7307)- net: support for cygwin (#7393)
- net: support
pope::OpenOptions::read_write
on Android (#7426)- net: add
Clone
implementation fornet::unix::SocketAddr
(#7422)Changed
- runtime: eliminate unnecessary lfence while operating on
queue::Local<T>
(#7340)- task: disallow blocking in
LocalSet::{poll,drop}
(#7372)Unstable
- runtime: add
TaskMeta::spawn_location
tracking where a task was spawned (#7417)- runtime: removed borrow from
LocalOptions
parameter toruntime::Builder::build_local
(#7346)Documented
- io: clarify behavior of seeking when
start_seek
is not used (#7366)- io: document cancellation safety of
AsyncWriteExt::flush
(#7364)- net: fix docs for
recv_buffer_size
method (#7336)- net: fix broken link of
RawFd
inTcpSocket
docs (#7416)- net: update
AsRawFd
doc link to current Rust stdlib location (#7429)- readme: fix double period in reactor description (#7363)
- runtime: add doc note that
on_*_task_poll
is unstable (#7311)- sync: update broadcast docs on allocation failure (#7352)
- time: add a missing panic scenario of
time::advance
(#7394)
... (truncated)
Commits
ab3ff69
chore: prepare to release v1.46.1 (#7444)a0d5b8a
runtime(unstable): fix task hook spawn locations fortokio::spawn
(#7440)a1ee3ef
chore: fix some minor typos in the comments (#7442)171cd14
changelog: fix typo inpipe::OpenOptions
for 1.46.0 (#7439)3f1f268
chore: prepare Tokio v1.46.0 (#7437)3e890cc
rt(unstable): add spawnLocation
toTaskMeta
(#7417)69290a6
net: deriveClone
fornet::unix::SocketAddr
(#7422)e2b1758
fuzz: cfg fuzz tests under cfg(test) (#7428)b7a75b5
net: updateAsRawFd
doc link to current Rust stdlib location (#7429)6b705b3
net: allowpipe::OpenOptions::read_write
on Android (#7426)- Additional commits viewable in compare view
Updates cc
from 1.2.27 to 1.2.29
Release notes
Sourced from cc's releases.
cc-v1.2.29
Other
- Fix target parsing for powerpc (#1490)
cc-v1.2.28
Other
Changelog
Sourced from cc's changelog.
1.2.29 - 2025-07-05
Other
- Fix target parsing for powerpc (#1490)
1.2.28 - 2025-07-04
Other
Commits
Updates h2
from 0.4.10 to 0.4.11
Release notes
Sourced from h2's releases.
v0.4.11
What's Changed
- fix: not return UnexpectedEof when server drops without close_notify by
@jmwample
in hyperium/h2#847New Contributors
@jmwample
made their first contribution in hyperium/h2#847Full Changelog: https://github.com/hyperium/h2/compare/v0.4.10...v0.4.11
Changelog
Sourced from h2's changelog.
0.4.11 (June 30, 2025)
- Fix client to not return an error when a clean shutdown otherwise doesn't get a TLS close_notify, which some servers don't bother sending.
Commits
Updates serde_with_macros
from 3.13.0 to 3.14.0
Release notes
Sourced from serde_with_macros's releases.
serde_with v3.14.0
Added
- Add support for
Range
,RangeFrom
,RangeTo
,RangeInclusive
(#851)RangeToInclusive
is currently unsupported by serde.- Add
schemars
implementations forBound
,Range
,RangeFrom
,RangeTo
,RangeInclusive
.- Added support for
schemars
v1 under theschemars_1
feature flag
Commits
16ea265
Bump version to 3.14 (#865)6b963ec
Bump version to 3.14ff8df7a
Dead code cleanup (#864)e3a5f16
Fix function naming scheme20a8cf6
Remove unused derives and dead functions in schemars codeefe145b
Extract common DropGuard struct and NumberExt trait1c3a1d3
Remove unused derives from internal Conten...Description has been truncated
Pull Request Statistics
1
1
+39
-13
Package Dependencies
Technical Details
ID: | 2895587 |
UUID: | 2646340819 |
Node ID: | PR_kwDOCvnhg86du_TT |
Host: | GitHub |
Repository: | mongodb/mongo-rust-driver |
Mergeable: | Yes |
Merge State: | Unstable |
Rebaseable: | Yes |