2020-05-26 17:59:05 +00:00
|
|
|
[package]
|
2020-12-16 09:36:38 +00:00
|
|
|
name = "instant-segment"
|
2021-02-10 10:49:09 +00:00
|
|
|
version = "0.5.0"
|
2020-05-26 17:59:05 +00:00
|
|
|
authors = ["Dirkjan Ochtman <dirkjan@ochtman.nl>"]
|
|
|
|
edition = "2018"
|
|
|
|
license = "Apache-2.0"
|
2020-11-23 12:20:03 +00:00
|
|
|
description = "Fast English word segmentation"
|
2020-12-16 09:36:38 +00:00
|
|
|
homepage = "https://github.com/InstantDomainSearch/instant-segment"
|
|
|
|
repository = "https://github.com/InstantDomainSearch/instant-segment"
|
|
|
|
documentation = "https://docs.rs/instant-segment"
|
2020-05-26 17:59:05 +00:00
|
|
|
|
2020-11-24 09:38:19 +00:00
|
|
|
[features]
|
2021-02-04 09:17:55 +00:00
|
|
|
__test_data = ["test-cases"]
|
|
|
|
test-cases = []
|
2021-02-04 10:00:27 +00:00
|
|
|
with-serde = ["serde", "ahash/serde", "smartstring/serde"]
|
2020-11-24 09:38:19 +00:00
|
|
|
|
2020-05-26 17:59:05 +00:00
|
|
|
[dependencies]
|
2021-01-27 13:55:09 +00:00
|
|
|
ahash = "0.7.0"
|
2020-11-23 12:52:51 +00:00
|
|
|
smartstring = "0.2.5"
|
2021-02-04 10:00:27 +00:00
|
|
|
serde = { version = "1.0.123", features = ["derive"], optional = true }
|
2020-05-26 17:59:05 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2020-05-28 17:56:13 +00:00
|
|
|
bencher = "0.1.5"
|
2020-05-26 17:59:05 +00:00
|
|
|
once_cell = "1.4"
|
2020-05-28 17:56:13 +00:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "bench"
|
|
|
|
harness = false
|