instant-segment/Cargo.toml

29 lines
719 B
TOML

[package]
name = "instant-segment"
version = "0.5.0"
authors = ["Dirkjan Ochtman <dirkjan@ochtman.nl>"]
edition = "2018"
license = "Apache-2.0"
description = "Fast English word segmentation"
homepage = "https://github.com/InstantDomainSearch/instant-segment"
repository = "https://github.com/InstantDomainSearch/instant-segment"
documentation = "https://docs.rs/instant-segment"
[features]
__test_data = ["test-cases"]
test-cases = []
with-serde = ["serde", "ahash/serde", "smartstring/serde"]
[dependencies]
ahash = "0.7.0"
smartstring = "0.2.5"
serde = { version = "1.0.123", features = ["derive"], optional = true }
[dev-dependencies]
bencher = "0.1.5"
once_cell = "1.4"
[[bench]]
name = "bench"
harness = false