From c0c6e640eb7c7ed311a63f21c6815f93e59fdb93 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakob=20R=C3=B6nnb=C3=A4ck?= Date: Sat, 28 Feb 2026 08:02:38 +0100 Subject: [PATCH] Error Handling with Result and Option (page 35) --- Cargo.toml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 6da1f67..934d3f8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,17 @@ [package] -name = "opencode-testing" +name = "todo_app" version = "0.1.0" -edition = "2024" +edition = "2026" +authors = ["Jakob Rönnbäck "] +description = "A simple command-line todo list manager" +license = "MIT" +repository = "https://gitea.rowanbrook.net/jakob/Learn-Rust-through-projects.git" +keywords = ["cli", "todo", "productivity"] +categories = ["command-line-utilities"] + +[[bin]] +name = "todo" +path = "src/main.rs" [dependencies] clap = { version = "4.0.0", features = ["derive"] }