From e000dab540f0cfd772fa2d6f984f1cc63f519ba4 Mon Sep 17 00:00:00 2001 From: sharkdp Date: Sun, 3 Jun 2018 18:20:53 +0200 Subject: [PATCH] Add metadata --- Cargo.toml | 13 +++++++++++++ README.md | 3 +++ 2 files changed, 16 insertions(+) create mode 100644 README.md diff --git a/Cargo.toml b/Cargo.toml index b80822c..3566e5e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,19 @@ [package] name = "content_inspector" +description = "Fast inspection of binary buffers to guess/determine the encoding" +categories = ["encoding"] +homepage = "https://github.com/sharkdp/content_inspector" +repository = "https://github.com/sharkdp/content_inspector" +keywords = [ + "unicode", + "encoding", + "binary", + "text", + "library", +] +license = "MIT/Apache-2.0" version = "0.1.0" +readme = "README.md" authors = ["David Peter "] [dependencies] diff --git a/README.md b/README.md new file mode 100644 index 0000000..c2ff402 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# content_inspector + +A simple Rust crate for fast inspection of binary buffers to guess/determine the encoding.