From 7af9147abdcd034493dd64b835cf0f5cfb11b823 Mon Sep 17 00:00:00 2001 From: Andrew Phillips Date: Wed, 14 May 2025 09:20:59 -0300 Subject: [PATCH] build: update Rust edition to 2024 and add package metadata --- Cargo.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 7623e9e..6944281 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,10 @@ [package] name = "keep" version = "0.1.0" -edition = "2021" +edition = "2024" +description = "Keep and manage temporary files with automatic metadata generation" +readme = "README.md" +categories = ["command-line-utilities"] [[test]] name = "tests"