Skip to content

Commit

Permalink
Cargo.toml: fix missing fields for publishing v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
andelf committed Jun 25, 2019
1 parent 1a0e9a4 commit 4b50f87
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,29 @@
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 <[email protected]>"]
authors = ["andelf <[email protected]>",
"Paul Meng <[email protected]>",
"messense <[email protected]>"]
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 }
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]]
Expand Down

0 comments on commit 4b50f87

Please sign in to comment.