Skip to content

Commit

Permalink
Use fork of diffy (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
robenkleene committed Jun 25, 2023
1 parent 0481c01 commit cf1de70
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
9 changes: 5 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ globwalk = "0.8.1"
atty = "0.2.14"
ignore = "0.4.17"
ansi_term = "0.12.1"
diffy = { git = "https://github.com/robenkleene/diffy/", branch = "set-filenames" }
diffy-fork-filenames = "0.4.0"
indexmap = "1.9.2"
shell-words = "1.1.0"
grep-cli = "0.1.7"
Expand Down
2 changes: 1 addition & 1 deletion src/writer.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use crate::patcher::Patcher;
use std::{fs, fs::File, io::prelude::*, path::PathBuf, io::BufReader};
use diffy::{create_file_patch, PatchFormatter};
use diffy_fork_filenames::{create_file_patch, PatchFormatter};

pub type Result<T, E = Error> = std::result::Result<T, E>;

Expand Down

0 comments on commit cf1de70

Please sign in to comment.