From 3e0c5b20ddd4da2c5d0473e94ee84786df10bdc8 Mon Sep 17 00:00:00 2001 From: alice pellerin Date: Fri, 10 Apr 2026 21:58:07 -0500 Subject: [PATCH] add metadata to cargo.toml --- Cargo.toml | 5 +++++ src/main.rs | 7 +++++++ 2 files changed, 12 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 2fa7191..42bbfc0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,11 @@ [package] name = "hexapoda" version = "0.1.0" +description = "a colorful modal hex editor" +repository = "https://github.com/simonomi/hexapoda" +keywords = ["cli", "tui", "hex", "tool", "editor"] +categories = ["command-line-utilities"] +license = "GPL-3.0-only" edition = "2024" [dependencies] diff --git a/src/main.rs b/src/main.rs index 79434c2..bcea4bd 100644 --- a/src/main.rs +++ b/src/main.rs @@ -28,6 +28,13 @@ const LINES_OF_PADDING: usize = 5; const BYTES_OF_PADDING: usize = LINES_OF_PADDING * BYTES_PER_LINE; // TODO: +// - help (use clap?) +// - clean up files +// - update showcase +// - write docs +// - simonomi.dev/hexapoda? +// - config +// - uhhhhh? // - inspector translations for varint // - search // - ascii and bytes (`/` and `A-/`?)