From 5cbef8824e5b6bed8a7f86f2723053360cba9045 Mon Sep 17 00:00:00 2001 From: andelf Date: Tue, 25 Jun 2019 16:59:29 +0800 Subject: [PATCH] Cargo.toml: fix missing fields for publishing v0.1.0 --- Cargo.toml | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 54672d5..22c1a26 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,13 +2,21 @@ name = "darts" description = "A double array trie, A Forward Maximum Matching Searcher." repository = "https://github.com/andelf/rust-darts" +documentation = "https://docs.rs/darts" version = "0.1.0" license = "MIT" -authors = ["andelf "] +authors = ["andelf ", + "Paul Meng ", + "messense "] readme = "README.md" -keywords = ["trie", "darts"] -categories = ["encoding"] +keywords = ["trie", "darts", "string", "search", "text"] +categories = ["data-structures", "text-processing"] edition = "2018" +exclude = ["/benches/**", "/priv/**", "/.travis.yml"] + +[badges] +travis-ci = { repository = "andelf/rust-darts" } +codecov = { repository = "andelf/rust-darts" } [dependencies] bincode = { version = "1.1", optional = true } @@ -16,7 +24,7 @@ serde = { version = "1.0", features = ["derive"], optional = true } [dev-dependencies] criterion = "0.2" -lazy_static = "1.0" +lazy_static = "1.3" hashbrown = "0.5.0" [[bench]]