feat: rename similar -> likewise
This commit is contained in:
parent
a169e29954
commit
7e86fb2e55
44 changed files with 64 additions and 391 deletions
23
README.md
23
README.md
|
|
@ -1,11 +1,13 @@
|
|||
# Similar: A Diffing Library
|
||||
# Likewise: A Diffing Library
|
||||
|
||||
[](https://crates.io/crates/similar)
|
||||
[](https://github.com/mitsuhiko/similar/blob/main/LICENSE)
|
||||
> This crate is a fork of [similar](https://github.com/mitsuhiko/similar) library, which, as of 11/9/25, is rather inactive.
|
||||
|
||||
[](https://crates.io/crates/likewise)
|
||||
[](https://github.com/frozen/likewise/blob/main/LICENSE)
|
||||
[](https://img.shields.io/badge/rust-1.60%2B-orange.svg)
|
||||
[](https://docs.rs/similar)
|
||||
[](https://docs.rs/likewise)
|
||||
|
||||
Similar is a dependency free crate for Rust that implements different diffing
|
||||
Likewise is a dependency free crate for Rust that implements different diffing
|
||||
algorithms and high level interfaces for it. It is based on the
|
||||
[pijul](https://pijul.org/) implementation of the Patience algorithm and
|
||||
inherits some ideas from there. It also incorporates the Myers' diff
|
||||
|
|
@ -13,7 +15,7 @@ algorithm which was largely written by Brandon Williams. This library was
|
|||
built for the [insta snapshot testing library](https://insta.rs).
|
||||
|
||||
```rust
|
||||
use similar::{ChangeTag, TextDiff};
|
||||
use likewise::{ChangeTag, TextDiff};
|
||||
|
||||
fn main() {
|
||||
let diff = TextDiff::from_lines(
|
||||
|
|
@ -48,12 +50,13 @@ fn main() {
|
|||
|
||||
## Related Projects
|
||||
|
||||
* [similar](https://github.com/mitsuhiko/similar)
|
||||
* [insta](https://insta.rs) snapshot testing library
|
||||
* [similar-asserts](https://github.com/mitsuhiko/similar-asserts) assertion library
|
||||
|
||||
## License and Links
|
||||
|
||||
* [Documentation](https://docs.rs/similar/)
|
||||
* [Issue Tracker](https://github.com/mitsuhiko/similar/issues)
|
||||
* [Examples](https://github.com/mitsuhiko/similar/tree/main/examples)
|
||||
* License: [Apache-2.0](https://github.com/mitsuhiko/similar/blob/main/LICENSE)
|
||||
* [Documentation](https://docs.rs/likewise/)
|
||||
* [Issue Tracker](https://github.com/barrett-ruth/likewise/issues)
|
||||
* [Examples](https://github.com/barrett-ruth/likewise/tree/main/examples)
|
||||
* License: [Apache-2.0](https://github.com/barrett-ruth/likewise/blob/main/LICENSE)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue