Skip to content

Commit 3599435

Browse files
committed
Bump to 1.70 to see if compiler panic is fixed.
1 parent b59cf97 commit 3599435

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
branches: [master]
88

99
env:
10-
rust_version: 1.69.0
10+
rust_version: 1.70.0
1111

1212
jobs:
1313
lint:

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ keywords = ["kafka", "rdkafka"]
1010
categories = ["api-bindings"]
1111
edition = "2018"
1212
exclude = ["Cargo.lock"]
13-
rust-version = "1.69"
13+
rust-version = "1.70"
1414

1515
[workspace]
1616
members = ["rdkafka-sys"]

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ RUN apt-get update && apt-get install -y build-essential \
1010

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

1515
# # Create dummy project for rdkafka
1616
# COPY Cargo.toml /rdkafka/

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ re-exported as rdkafka features.
184184

185185
### Minimum supported Rust version (MSRV)
186186

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

changelog.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
See also the [rdkafka-sys changelog](rdkafka-sys/changelog.md).
44

55
## Unreleased
6-
* Bump MSRV to 1.69 to pick up cargo index improvement and `CStr::from_bytes_until_nul`
6+
* Bump MSRV to 1.70 to pick up cargo index improvement and `CStr::from_bytes_until_nul`
77

88
## 0.36.2 (2024-01-16)
99

rdkafka-sys/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ description = "Native bindings to the librdkafka library"
1010
keywords = ["kafka", "rdkafka"]
1111
categories = ["external-ffi-bindings"]
1212
edition = "2018"
13-
rust-version = "1.69"
13+
rust-version = "1.70"
1414

1515
[dependencies]
1616
num_enum = "0.5.0"

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@
176176
//!
177177
//! ### Minimum supported Rust version (MSRV)
178178
//!
179-
//! The current minimum supported Rust version (MSRV) is 1.69.0. Note that
179+
//! The current minimum supported Rust version (MSRV) is 1.70.0. Note that
180180
//! bumping the MSRV is not considered a breaking change. Any release of
181181
//! rust-rdkafka may bump the MSRV.
182182
//!

0 commit comments

Comments
 (0)