Skip to content

Commit

Permalink
Bump to 1.70 to see if compiler panic is fixed.
Browse files Browse the repository at this point in the history
  • Loading branch information
davidblewett committed Jan 22, 2024
1 parent b59cf97 commit 3599435
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
branches: [master]

env:
rust_version: 1.69.0
rust_version: 1.70.0

jobs:
lint:
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ keywords = ["kafka", "rdkafka"]
categories = ["api-bindings"]
edition = "2018"
exclude = ["Cargo.lock"]
rust-version = "1.69"
rust-version = "1.70"

[workspace]
members = ["rdkafka-sys"]
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ RUN apt-get update && apt-get install -y build-essential \

RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain nightly-2019-10-17
ENV PATH /root/.cargo/bin/:$PATH
#ENV CARGO_REGISTRIES_CRATES_IO_PROTOCOL sparse
ENV CARGO_REGISTRIES_CRATES_IO_PROTOCOL sparse

# # Create dummy project for rdkafka
# COPY Cargo.toml /rdkafka/
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ re-exported as rdkafka features.

### Minimum supported Rust version (MSRV)

The current minimum supported Rust version (MSRV) is 1.69.0. Note that
The current minimum supported Rust version (MSRV) is 1.70.0. Note that
bumping the MSRV is not considered a breaking change. Any release of
rust-rdkafka may bump the MSRV.

Expand Down
2 changes: 1 addition & 1 deletion changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
See also the [rdkafka-sys changelog](rdkafka-sys/changelog.md).

## Unreleased
* Bump MSRV to 1.69 to pick up cargo index improvement and `CStr::from_bytes_until_nul`
* Bump MSRV to 1.70 to pick up cargo index improvement and `CStr::from_bytes_until_nul`

## 0.36.2 (2024-01-16)

Expand Down
2 changes: 1 addition & 1 deletion rdkafka-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ description = "Native bindings to the librdkafka library"
keywords = ["kafka", "rdkafka"]
categories = ["external-ffi-bindings"]
edition = "2018"
rust-version = "1.69"
rust-version = "1.70"

[dependencies]
num_enum = "0.5.0"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@
//!
//! ### Minimum supported Rust version (MSRV)
//!
//! The current minimum supported Rust version (MSRV) is 1.69.0. Note that
//! The current minimum supported Rust version (MSRV) is 1.70.0. Note that
//! bumping the MSRV is not considered a breaking change. Any release of
//! rust-rdkafka may bump the MSRV.
//!
Expand Down

0 comments on commit 3599435

Please sign in to comment.