cargo: bump rdkafka to 0.39.0#31
Open
nguyen-andrew wants to merge 1 commit into
Open
Conversation
Brings the bundled librdkafka up from 2.3.0 (Oct 2023) to 2.12.1 (Oct 2025) so the client-swarm binary in Redpanda's test image is built against a recent Kafka 4.x-compatible client library. Build features (cmake-build, zstd-pkg-config, ssl, sasl) are unchanged. rdkafka 0.38.0's only relevant breaking change (OwnedDeliveryResult's Ok variant moving from a tuple to a Delivery struct) does not affect this codebase, since producers.rs matches the result as Ok(_) without destructuring the inner value. Newer zstd-sys (transitive dep) now uses bindgen, which requires libclang at build time. Downstream consumers should ensure libclang-dev is installed.
Member
Author
|
This bump is needed to upgrade this test. |
7 tasks
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.
Brings the bundled librdkafka up from 2.3.0 (Oct 2023) to 2.12.1 (Oct
2025), so the client-swarm binary in Redpanda's test image is built
against a recent Kafka 4.x-compatible client library.
Build features (
cmake-build,zstd-pkg-config,ssl,sasl) areunchanged. The only relevant breaking change in 0.38 —
OwnedDeliveryResult'sOkvariant moving from a tuple to aDeliverystruct — does not affect this codebase, since
producers.rsmatchesthe result as
Ok(_)without destructuring the inner value.Note: newer
zstd-sys(transitive) now uses bindgen at build time,which requires
libclang-dev. Downstream consumers building this fromsource should ensure that's installed.
🤖 Generated with Claude Code