Skip to content

Commit 34cef60

Browse files
fix: Downgrade edition2024 to edition2021 for Rust 1.75 compatibility
wezterm-cell and wezterm-escape-parser were using edition2024 which requires Rust 1.82+. Downgrading to edition2021 for broader compatibility. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent fb58e13 commit 34cef60

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

wezterm-cell/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
authors = ["Wez Furlong"]
33
name = "wezterm-cell"
44
version = "0.1.0"
5-
edition = "2024"
5+
edition = "2021"
66
repository = "https://github.com/cxlinux-ai/cx"
77
description = "Model a Cell in a Terminal display"
88
license = "MIT"

wezterm-escape-parser/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
authors = ["Wez Furlong"]
33
name = "wezterm-escape-parser"
44
version = "0.1.0"
5-
edition = "2024"
5+
edition = "2021"
66
repository = "https://github.com/cxlinux-ai/cx"
77
description = "Escape Sequence Parser"
88
license = "MIT"

0 commit comments

Comments
 (0)