Patch the string reference lifetime issue, and rediff the other patch while we're at it.
24 lines
553 B
Diff
24 lines
553 B
Diff
From: Robert Garrett <robertgarrett404@gmail.com>
|
|
Date: Sun, 1 Jun 2025 17:59:20 -0500
|
|
Subject: Rust edition downgrade to 2021
|
|
|
|
Debian Bookworm uses Rust 1.63 which only supports up to the 2021
|
|
edition.
|
|
---
|
|
Cargo.toml | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/Cargo.toml b/Cargo.toml
|
|
index 4fd569c..8b67a52 100644
|
|
--- a/Cargo.toml
|
|
+++ b/Cargo.toml
|
|
@@ -1,7 +1,7 @@
|
|
[package]
|
|
name = "gt-tool"
|
|
version = "2.2.0"
|
|
-edition = "2024"
|
|
+edition = "2021"
|
|
|
|
[dependencies]
|
|
clap = { version = "4.0.7", features = ["derive", "env"] }
|