Skip to content

Commit

Permalink
chore(cubestore): Downgrade rdkafka version to 0.29.0 (#8996)
Browse files Browse the repository at this point in the history
  • Loading branch information
waralexrom authored Nov 27, 2024
1 parent 8a53481 commit fe62933
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 10 deletions.
35 changes: 28 additions & 7 deletions rust/cubestore/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions rust/cubestore/cubestore/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -103,15 +103,15 @@ anyhow = "1.0"
arc-swap = "1.7.1"

[target.'cfg(target_os = "linux")'.dependencies]
rdkafka = { version = "0.36.2", features = ["ssl", "gssapi", "cmake-build"] }
rdkafka = { version = "0.29.0", features = ["ssl", "gssapi", "cmake-build"] }
sasl2-sys = { version = "0.1.6", features = ["vendored"] }

# TODO support ssl for windows
[target.'cfg(target_os = "windows")'.dependencies]
rdkafka = { version = "0.36.2", features = ["cmake-build"] }
rdkafka = { version = "0.29.0", features = ["cmake-build"] }

[target.'cfg(target_os = "macos")'.dependencies]
rdkafka = { version = "0.36.2", features = ["ssl", "gssapi"] }
rdkafka = { version = "0.29.0", features = ["ssl", "gssapi"] }
sasl2-sys = { version = "0.1.6", features = ["vendored"] }

[dev-dependencies]
Expand Down

0 comments on commit fe62933

Please sign in to comment.