From 8a962bd25c175c6804df2a408d236fff6f22ef4e Mon Sep 17 00:00:00 2001 From: Ethan Henderson Date: Sat, 30 Jul 2022 16:42:19 +0100 Subject: [PATCH] Add Cargo.toml keys --- Cargo.toml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 31f9614..fa16302 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,11 +1,21 @@ [package] name = "ircparser" +description = "An IRC (RFC1459) parser and formatter, built in Rust." version = "0.1.0" edition = "2021" +authors = ["Ethan Henderson"] +readme = "README.md" +license = "BSD-3-Clause" +homepage = "https://github.com/parafoxia/ircparser" +repository = "https://github.com/parafoxia/ircparser" +documentation = "https://docs.rs/ircparser" +keywords = ["irc", "rfc", "rfc1459", "parse"] +categories = ["parser-implementations"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html -[dependencies] +[lib] +name = "ircparser" [dev-dependencies] collection_macros = "0.2.0"