From c0ffee5c234d840850a9ca550d34b25197a75aa6 Mon Sep 17 00:00:00 2001 From: Hendrik Sollich Date: Wed, 1 May 2024 14:44:04 +0200 Subject: [PATCH] fix: address lib.rs suggestions --- Cargo.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 6ee424dc..d8ed46b3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,6 +7,8 @@ authors = [ ] description = "Parsing ISO8601 dates using nom" +keywords = [ "iso8601", "date-time", "parser", "nom" ] +categories = [ "parser-implementations", "date-and-time" ] repository = "https://github.com/badboy/iso8601" documentation = "https://docs.rs/iso8601/" @@ -27,4 +29,4 @@ serde_json = "1.0" [features] default = ["std"] std = ["nom/std"] -chrono = ["dep:chrono", "num-traits"] +chrono = ["dep:chrono", "dep:num-traits"]