Remove unused core feature

This commit is contained in:
Danny Guo 2015-04-15 01:04:56 -04:00
parent e151b0f191
commit 8d98af109b
3 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,7 @@
[package]
name = "strsim"
version = "0.2.3"
version = "0.2.4"
authors = ["Danny Guo <dannyguo91@gmail.com>"]
description = """
Implementations of string similarity metrics.

View File

@ -10,7 +10,7 @@ Rust implementations of [string similarity metrics]. Best efforts will be made t
```toml
# Cargo.toml
[dependencies]
strsim = "0.2.3"
strsim = "0.2.4"
```
### Usage
@ -40,7 +40,7 @@ fn main() {
### Version
0.2.3
0.2.4
### License

View File

@ -2,7 +2,7 @@
//! This library implements string similarity metrics. Currently includes
//! Hamming, Levenshtein, Jaro, and Jaro-Winkler.
#![feature(test, core, collections)]
#![feature(test, collections)]
extern crate test;