Commit Graph

88 Commits

Author SHA1 Message Date
openharmony_ci
82e69de5a8
!2 Add OAT.xml and README.OpenSource
Merge pull request !2 from fangting/master
2023-04-14 08:09:52 +00:00
fangting
043b93ee84 Add OAT.xml and README.OpenSource
Signed-off-by: fangting <fangting12@huawei.com>
2023-04-14 14:15:26 +08:00
openharmony_ci
a11d888da8
!1 [strsim-rs]Add GN Build Files and Custom Modifications to Rust Third-party Libraries
Merge pull request !1 from lubinglun/master
2023-04-13 11:34:53 +00:00
lubinglun
a501f67735 Add GN Build Files and Custom Modifications
Issue:https://gitee.com/openharmony/build/issues/I6UFTP
Signed-off-by: lubinglun <lubinglun@huawei.com>
2023-04-12 17:27:05 +08:00
Danny Guo
72784f07f2 Release v0.10.0 2020-01-31 09:42:13 -05:00
Rob Ede
6f8a8cb49f add sorensen-dice distance function 2020-01-31 09:24:44 -05:00
Danny Guo
74ab292905 Release v0.9.3 2019-12-12 21:54:28 -05:00
Danny Guo
605c81c9b9 Fix Jaro and Jaro-Winkler when the length is one 2019-12-12 21:48:41 -05:00
Danny Guo
c4cdd9c35d Switch to GitHub Actions for CI 2019-12-07 09:34:25 -05:00
Danny Guo
f3918bd78a Move badges out of the heading 2019-09-14 11:20:17 -04:00
Sergey "Shnatsel" Davidoff
6d01f95259 Forbid unsafe code (#38) 2019-09-14 11:18:23 -04:00
Danny Guo
858a35c54a Add funding info 2019-08-25 15:15:29 -04:00
Danny Guo
cc25041cc1 Release v0.9.2 2019-05-09 01:23:23 -04:00
Danny Guo
dfba131562 Use a single vector instread of ndarray in Damerau-Levenshtein
We can drop a dependency while retaining the performance boost.

Related to https://github.com/dguo/strsim-rs/issues/34
2019-05-09 01:19:23 -04:00
Danny Guo
687dc6d9a0 Revert back to the standard library hashmap
Related to https://github.com/dguo/strsim-rs/issues/34
2019-05-09 01:18:26 -04:00
Danny Guo
7aacbc5763 Release v0.9.1 2019-04-08 17:24:51 -04:00
Danny Guo
1cc9a62b12 Remove last traces of Appveyor 2019-04-08 17:24:34 -04:00
Ophir LOJKINE
d6717dbac8 [performance] Improve the performance of damerau_levenshtein (#32)
* [performance] Improve the performance of damerau_levenshtein

My tests show the new version is approximately 2.5 times faster than
the old ones. Most of the gains come from using hashbrown for the
hashmap.

* Switch back to rust 2015 to fix CI

* Increase minimum required rust version to 1.31

* Simplify the levenshtein function
2019-04-08 17:08:20 -04:00
Danny Guo
5907665163 Release v0.9.0 2019-04-06 09:40:44 -04:00
Ophir LOJKINE
31cb4cb82d [feature] Implement generic distance functions (#30)
* [feature] Implement generic distance functions

Closes https://github.com/dguo/strsim-rs/issues/29

* Change variable names in generic functions

* rename *_generic functions to generic_*

See https://github.com/dguo/strsim-rs/pull/30#issuecomment-475084373
2019-03-29 16:07:13 -04:00
Danny Guo
f89f245766
Add a pinned Rust version to the Travis config (#27)
Fixes #26
2018-10-30 18:47:31 -04:00
Casey Primozic
860926ce82 Implement Error for StrSimError (#23)
* Implement `Display` for `StrSimError` as well
2018-10-30 17:16:21 -04:00
Igor Gnatenko
4ce73f421c Exclude unneeded files from crates.io (#22) 2018-10-30 16:47:39 -04:00
Danny Guo
7947482ec4
Use Travis for Windows testing (#25)
Travis added Windows support a few weeks ago, so we can drop AppVeyor.
2018-10-28 14:36:51 -04:00
Danny Guo
a563473c14 Fix the examples in the README
Fixes #24
2018-10-28 11:38:36 -04:00
Danny Guo
5cd51ec83f Upgrade Rust to 1.30.0 2018-10-28 11:38:29 -04:00
Danny Guo
bc5a0a1507 Clean up the README 2018-10-23 11:53:36 -04:00
Danny Guo
e777b61bc2 Release 0.8.0 2018-08-19 18:26:48 -04:00
Viktor Lazarev
ab17c1e9ab Add normalized Levenshtein and Damerau-Levenstein (#20)
* Add tests for 'normalized_levenshtein'

* Implement 'normalized_levenshtein'

* Implement 'normalized_damerau_levenshtein'

* Add benchmarking of new functions

* Move test cases from integration tests to unit tests

* Use 'is_empty' instead of 'len'

* Count chars instead of bytes

* Update Readme
2018-08-19 17:30:28 -04:00
Sean Stangl
e178e6995f Add some simple benchmarks. 2018-06-25 09:55:27 -04:00
Felix Yan
ce93ac1652 Fix a typo in CHANGELOG.md 2018-06-09 08:29:19 -04:00
Danny Guo
f317be9f7c Bump the minor version 2018-01-17 11:06:17 -05:00
Danny Guo
40c6c99df9 Update the LICENSE
The Levenshtein implementation now has changes that are derived from
https://github.com/wooorm/levenshtein-rs
2018-01-17 10:53:00 -05:00
dv
6ca79b06ee Improve Levenshtein performance (#16) 2018-01-17 10:50:58 -05:00
Danny Guo
22fbcfb914 Remove the against_vec functions 2018-01-17 10:48:47 -05:00
Danny Guo
f4fd98e227 Improve the dev CLI 2017-11-06 22:01:24 -05:00
Danny Guo
e701012617 Use the official Docker image for Rust 2017-10-11 12:03:09 -04:00
Martin Geisler
91240376c1 Add CI badges to crates.io (#14) 2017-07-24 18:09:46 -05:00
Danny Guo
b6567a0584 Update Cargo metadata 2016-12-31 09:45:44 -05:00
Danny Guo
454834f300 Refactor Levenshtein implementation 2016-12-28 22:37:17 -05:00
Danny Guo
f8d8c1fff8 Fix Damerau-Levenshtein (#12)
Rename the original implementation to osa_distance, and implement the actual
metric.
2016-12-26 22:54:32 -05:00
Danny Guo
b2fc338541 Use Docker instead of Vagrant for development 2016-12-24 13:46:50 -05:00
Danny Guo
c284c64ade Remove docs (#10)
Just link to docs.rs
2016-11-21 23:05:34 -06:00
Danny Guo
065b023583 Add a link to the Rust homepage 2016-10-06 08:05:10 -04:00
Danny Guo
a812b0ce68 Let Git normalize line endings 2016-09-24 23:45:57 -04:00
llogiq
3ad9a262ac Fix some clippy warnings (#7) 2016-09-17 23:12:50 -04:00
Danny Guo
cb67c34a12 Update the documentation link in the README 2016-09-16 08:54:18 -04:00
Danny Guo
eb1c501026 Add a change log 2016-08-27 15:51:12 -04:00
Danny Guo
8f9236743c Bump patch version 2016-08-23 23:06:30 -04:00
Danny Guo
3dfff3d433 Fix Jaro and Jaro-Winkler panic (#6)
When given two strings both with length one, Jaro and Jaro-Winkler would panic
with an arithmetic operation overflow.
2016-08-23 22:53:08 -04:00