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 //! //! ```