From d74dd6ead7a50928251274e8772cae77a20e8e7f Mon Sep 17 00:00:00 2001 From: Riccardo Mazzarini Date: Sat, 2 Dec 2023 17:21:08 +0100 Subject: [PATCH] prepare `Cargo.toml` for publishing --- Cargo.toml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 12401bf..f6d25ad 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,6 +3,18 @@ name = "norm" version = "0.1.0" edition = "2021" authors = ["Riccardo Mazzarini "] +description = "A collection of distance metrics on strings" +documentation = "https://docs.rs/norms" +repository = "https://github.com/nomad/norm" +readme = "README.md" +license = "MIT" +keywords = ["text", "fuzzy", "match", "search", "fzf"] +categories = ["algorithms"] +exclude = ["/.github", "/benches", "/examples", "/fuzz", "/tests"] + +[package.metadata.docs.rs] +features = ["fzf-v1", "fzf-v2"] +rustdoc-args = ["--cfg", "docsrs"] [features] fzf-v1 = ["__any-metric"]