From 2fcc9034bbeb030224ea261f656dcad5f239e7b6 Mon Sep 17 00:00:00 2001 From: Jason Orendorff Date: Tue, 12 Nov 2024 13:09:42 -0600 Subject: [PATCH] last-minute polishing --- crates/string-offsets/Cargo.toml | 9 +++++++-- crates/string-offsets/src/lib.rs | 1 - 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/crates/string-offsets/Cargo.toml b/crates/string-offsets/Cargo.toml index 842b7f7..dabf4d3 100644 --- a/crates/string-offsets/Cargo.toml +++ b/crates/string-offsets/Cargo.toml @@ -1,8 +1,13 @@ [package] -authors = ["The blackbird team "] -edition = "2021" name = "string-offsets" +authors = ["The blackbird team "] version = "0.1.0" +edition = "2021" +description = "Offset calculator to convert between byte, char, and line offsets in a string." +repository = "https://github.com/github/rust-gems" +license = "MIT" +keywords = ["unicode", "string", "offsets", "positions", "interoperability"] +categories = ["algorithms", "data-structures", "text-processing", "development-tools::ffi"] [dev-dependencies] itertools = "0.13" diff --git a/crates/string-offsets/src/lib.rs b/crates/string-offsets/src/lib.rs index 02ea569..a24d45c 100644 --- a/crates/string-offsets/src/lib.rs +++ b/crates/string-offsets/src/lib.rs @@ -1,6 +1,5 @@ //! Offset calculator to convert between byte, char, and line offsets in a string. //! -//! //! # Example //! //! ```