Skip to content

Commit dd57854

Browse files
committed
Increase Minimum Supported Rust Version to 1.64
It is required for clap_lex v0.3.2 and async_zip 0.0.11.
1 parent b83b9db commit dd57854

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -78,13 +78,13 @@ jobs:
7878
rust: 1.68.0
7979
python: false # Python bindings compilation on Windows is not supported.
8080

81-
# Minimum Supported Rust Version = 1.63.0
81+
# Minimum Supported Rust Version = 1.64.0
8282
#
8383
# Minimum Supported Python Version = 3.7
8484
# This is the minimum version for which manylinux Python wheels are
8585
# built.
8686
- os: ubuntu-latest
87-
rust: 1.63.0
87+
rust: 1.64.0
8888
python: 3.7
8989
runs-on: ${{ matrix.os }}
9090
steps:

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
- Pick up system's light/dark mode in generated message HTML #4150
88
- Support non-persistent configuration with DELTACHAT_* env
99
- Print deltachat-repl errors with causes. #4166
10+
- Increase MSRV to 1.64. #4167
1011

1112
### Fixes
1213
- Fix segmentation fault if `dc_context_unref()` is called during

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "deltachat"
33
version = "1.111.0"
44
edition = "2021"
55
license = "MPL-2.0"
6-
rust-version = "1.63"
6+
rust-version = "1.64"
77

88
[profile.dev]
99
debug = 0

0 commit comments

Comments
 (0)