From 33d26e3f3f45e392b793d6de9facae435b8930ac Mon Sep 17 00:00:00 2001 From: David Bittner Date: Fri, 26 Apr 2019 22:00:18 -0400 Subject: [PATCH] adding metadata to Cargo.toml --- Cargo.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index fef0ff8..da6a947 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,9 +1,14 @@ [package] name = "ansi-parser" +description = "A library using nom for parsing ANSI Escape Codes" +homepage = "https://gitlab.com/DavidBittner/ansi-parser" version = "0.1.0" authors = ["David Bittner "] edition = "2018" +license = "GPLv3" +license-file = "LICENSE" + [dependencies] nom = "4.2.3" num-traits = "0.2"