From bb83352791412478d05f5efaa68ed11337735e5d Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Wed, 16 Dec 2020 11:36:08 +0100 Subject: [PATCH] Add a rename notice --- Cargo.toml | 2 +- README.md | 3 +++ src/lib.rs | 5 +++++ 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 2f0e002..317b137 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "word-segmenters" -version = "0.3.1" +version = "0.3.2" authors = ["Dirkjan Ochtman "] edition = "2018" license = "Apache-2.0" diff --git a/README.md b/README.md index b0ace9f..0943ccd 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,8 @@ [![Build status](https://github.com/InstantDomainSearch/word-segmenters/workflows/CI/badge.svg)](https://github.com/InstantDomainSearch/word-segmenters/actions?query=workflow%3ACI) [![License: Apache 2.0](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](LICENSE-APACHE) +## This crate has been renamed. Refer to [instant-segment][instant-segment] for the latest updates. + word-segmenters is a fast Apache-2.0 library for English word segmentation. It is based on the Python [wordsegment][python] project written by Grant Jenkins, which is in turn based on code from Peter Norvig's chapter [Natural Language @@ -18,6 +20,7 @@ the Python implementation. Further optimizations are planned -- see the [issues] The API has been carefully constructed so that multiple segmentations can share the underlying state (mainly the unigram and bigram maps) to allow parallel usage. +[instant-segment]: https://github.com/InstantDomainSearch/instant-segment [python]: https://github.com/grantjenks/python-wordsegment [chapter]: http://norvig.com/ngrams/ [book]: http://oreilly.com/catalog/9780596157111/ diff --git a/src/lib.rs b/src/lib.rs index 5b9ea99..2c64f60 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,3 +1,8 @@ +//! This crate is no longer being updated. Refer to [instant-segment][instant-segment] +//! for the latest updates. +//! +//! [instant-segment]: https://github.com/InstantDomainSearch/instant-segment + use std::ops::{Index, Range}; use std::str;