mirror of
https://gitee.com/openharmony/third_party_rust_strsim-rs
synced 2024-11-23 07:39:51 +00:00
Remove unused core feature
This commit is contained in:
parent
e151b0f191
commit
8d98af109b
@ -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.
|
||||
|
@ -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
|
||||
|
||||
|
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user