Skip to content

Commit 7d7d008

Browse files
committed
replaced likewise crate with similar as requested by the maintainer or likewise (#522)
1 parent a27c7e8 commit 7d7d008

4 files changed

Lines changed: 275 additions & 59 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1414

1515
- generic importer configuration is now properly read and used
1616

17+
### Changed
18+
19+
- replaced `likewise` crate with `similar` as requested by the maintainer or `likewise` (#522)
20+
1721
## [0.49.0] - 2026-03-17
1822

1923
### Added

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ graphviz-rust = "0.9.7"
3131
indicatif = "0.17"
3232
itertools = "0.12"
3333
lazy_static = "1.4.0"
34-
likewise = "3.0.0"
3534
linked-hash-map = "0.5.6"
3635
linked_hash_set = "0.1.4"
3736
log = "0.4"
@@ -52,6 +51,7 @@ serde = "1.0"
5251
serde_derive = "1.0"
5352
serde_json = "1.0.138"
5453
sheets-diff = "1.1.3"
54+
similar = "2.7.0"
5555
tabled = { version = "0.15", features = ["ansi"] }
5656
tempfile = "3"
5757
termimad = "0.30"

src/manipulator/diff.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ use graphannis_core::{
1717
graph::{ANNIS_NS, NODE_NAME_KEY, storage::union::UnionEdgeContainer},
1818
};
1919
use itertools::Itertools;
20-
use likewise::{Algorithm, DiffOp, capture_diff_slices};
2120
use linked_hash_set::LinkedHashSet;
2221
use serde::{Deserialize, Serialize};
22+
use similar::{Algorithm, DiffOp, capture_diff_slices};
2323

2424
use crate::{
2525
manipulator::Manipulator,

0 commit comments

Comments
 (0)