Commit graph

172 commits

Author SHA1 Message Date
WJH
2b31f65445
doc(inline/iter_strings_lossy): describe different behaviors (#52) 2023-10-12 23:06:38 +02:00
Armin Ronacher
47f46257d4 2.3.0 2023-10-07 18:17:53 +02:00
Armin Ronacher
3319f77693 Downgrade msrv lock file 2023-10-07 17:59:34 +02:00
Armin Ronacher
d21e126057 Use Cargo.lock.msrv 2023-10-07 17:45:38 +02:00
Armin Ronacher
86f68a6394 Make clippy happy 2023-10-07 17:19:27 +02:00
Armin Ronacher
e85ddb0d18 Added value_ref and value_mut
Fixes #51
2023-10-07 17:17:37 +02:00
Wilfred Hughes
de455873da
Spelling and grammar fixes (#49) 2023-08-15 19:05:12 +02:00
Tshepang Mbambo
9f76d88c3d
fix some english things (#48) 2023-07-11 22:26:06 +02:00
Dirk Stolle
e575b88ca1
Update GitHub Actions CI (#47)
The following updates are performed:
* update actions/checkout to v3
* replace unmaintained actions-rs/toolchain by dtolnay/rust-toolchain
2023-04-25 23:37:14 +02:00
Armin Ronacher
ae815d13ea Remove mention of Hunt–McIlroy / Hunt–Szymanski
Refs #44
2023-02-01 10:45:03 +01:00
Armin Ronacher
572ae1e547 2.2.1 2022-11-14 21:41:18 +01:00
alexjg
679c32ddee
check for identical sequences in lcs to avoid overflow panic (#43) 2022-11-14 21:39:48 +01:00
Armin Ronacher
77c20faf94 2.2.0 2022-08-01 09:39:02 +02:00
Armin Ronacher
6a5d3112ef Add changelog entry 2022-08-01 09:35:23 +02:00
Armin Ronacher
de6f09a01c Remove unused lifetime 2022-08-01 09:34:35 +02:00
Armin Ronacher
823cb566df Removed the mention of panics on context_radius 2022-07-28 21:06:08 +02:00
Armin Ronacher
ff5f4caaa3 Alternative fix for #37 that lets the code hobble on 2022-07-28 20:13:45 +02:00
Armin Ronacher
3a938ae1d3 Raise an explicit panic when context_lines is 0. Fixes #37 2022-07-28 15:15:37 +02:00
Kian-Meng Ang
3c784d6e9d
Fix typos and markdown (#36) 2022-07-22 01:00:36 +02:00
Armin Ronacher
236a299ff0 Add minimum rust version to cargo.toml 2022-01-23 21:04:40 +01:00
Armin Ronacher
7c04c9b8d3 Derive a default instead of manual impl 2022-01-23 21:02:59 +01:00
Armin Ronacher
d0a282473e Only check on 1.41 since insta no longer supports it 2022-01-23 20:51:00 +01:00
Armin Ronacher
b6359c315e Added MSRV badge 2022-01-23 20:44:15 +01:00
Armin Ronacher
d599113da0 Bump console 2022-01-05 16:14:23 +01:00
Armin Ronacher
00a91e9cac
Create FUNDING.yml 2022-01-05 10:16:38 +01:00
Armin Ronacher
46ce5add60 2.1.0 2021-10-03 09:05:24 +02:00
Armin Ronacher
11d18ca26b Added serde example 2021-10-03 09:02:22 +02:00
Armin Ronacher
4a81e573c2 Fixed a clippy lint 2021-10-03 08:53:23 +02:00
Armin Ronacher
40edf6d427 Added missing snapshots 2021-10-03 08:50:14 +02:00
Armin Ronacher
f0e38d862b Added optional serde support 2021-10-03 08:46:57 +02:00
Armin Ronacher
e3c6e5498a Remove deprecated slice diffing methods 2021-09-11 17:42:46 +02:00
Armin Ronacher
25aba69438 2.0.0 2021-09-11 11:24:04 +02:00
Armin Ronacher
a3e10af892
Make the change type be generic over any T rather &T (#31)
This makes the interface of this crate more flexible as the utility
methods such as `iter_changes` now also work if a container does not
contain references.
2021-09-11 11:20:51 +02:00
Ben Armstead
0b8e237280
Remove unnecessary borrow (#30) 2021-09-11 00:35:23 +02:00
Richard McCormack
d268d4ca13
Fix typo in CHANGELOG.md (#23) 2021-02-27 15:49:07 +01:00
Armin Ronacher
9a85c6013f Remove assert example and link to similar-asserts 2021-02-25 23:42:33 +01:00
Armin Ronacher
3cb7d5ab76 Fix the ranges in unified diff output 2021-02-25 23:20:56 +01:00
Armin Ronacher
094ba84680 1.3.0 2021-02-25 22:27:09 +01:00
Armin Ronacher
14874efedc Added an example that shows how similar performs for large diffs 2021-02-25 22:23:35 +01:00
Armin Ronacher
1d176426e6 Update changelog 2021-02-25 22:16:03 +01:00
Armin Ronacher
7e628d78d8
Add compaction support (#22) 2021-02-25 22:13:43 +01:00
Armin Ronacher
ddb73d8351 Added some missing tests 2021-02-21 20:06:28 +01:00
Armin Ronacher
1a0aa9b142 Reuse common prefix / common suffix functions 2021-02-21 19:52:10 +01:00
Armin Ronacher
b468bf94e3 Refactor patience unique code to be more readable 2021-02-21 19:38:40 +01:00
Armin Ronacher
c32556cfee Make clippy happy 2021-02-21 15:52:05 +01:00
Armin Ronacher
77c7654589 Refactor some of the patience code into a utils module 2021-02-21 15:38:08 +01:00
Armin Ronacher
28bfd4698a Add default timeout for inline highlighting 2021-02-21 00:18:50 +01:00
Armin Ronacher
56f50a0c87 Use is_empty_range in a function where it was missed 2021-02-20 23:32:34 +01:00
Armin Ronacher
5a24bb8652 Move empty range function into algorithm utils 2021-02-20 20:58:01 +01:00
Armin Ronacher
1cc4ec4d25 Refactor to add a is_empty_range function 2021-02-20 15:51:45 +01:00