Skip to content

Commit

Permalink
0.2.2 - deprecate crate
Browse files Browse the repository at this point in the history
  • Loading branch information
bluss committed May 19, 2021
1 parent 19fdadd commit e99b3c7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "twoway"
version = "0.2.1"
version = "0.2.2"
authors = ["bluss"]

description = "Fast substring search for strings and byte strings. Optional SSE4.2 acceleration (if detected at runtime) using pcmpestri. Memchr is the only mandatory dependency. The two way algorithm is also used by rust's libstd itself, but here it is exposed both for byte strings, using memchr, and optionally using a SSE4.2 accelerated version."
description = "(Deprecated - use crate memchr instead.) Fast substring search for strings and byte strings. Optional SSE4.2 acceleration (if detected at runtime) using pcmpestri. Memchr is the only mandatory dependency. The two way algorithm is also used by rust's libstd itself, but here it is exposed both for byte strings, using memchr, and optionally using a SSE4.2 accelerated version."

license = "MIT/Apache-2.0"
repository = "https://github.com/bluss/twoway"
Expand Down Expand Up @@ -40,3 +40,6 @@ all = ["jetscii", "pattern"]
[package.metadata.release]
no-dev-version = true
tag-name = "{{version}}"

[badges]
maintenance = { status = "deprecated" }
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#![cfg_attr(not(feature = "use_std"), no_std)]
#![cfg_attr(feature = "pattern", feature(pattern))]

//! **This crate is deprecated. Use crate `memchr` instead.**
//!
//! Fast substring search for strings and byte strings, using the [two-way algorithm][tw].
//!
Expand Down

0 comments on commit e99b3c7

Please sign in to comment.