-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Vahe Danielyan
committed
Jan 6, 2024
1 parent
1320294
commit 5dd11b1
Showing
4 changed files
with
6 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "diffdir" | ||
version = "0.4.2" | ||
version = "0.4.3" | ||
edition = "2021" | ||
authors = ["Vahe Danielyan <[email protected]>"] | ||
license = "MIT" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,19 +12,19 @@ If you don't have rust installed, go ahead and [Install Rust](https://www.rust-l | |
|
||
Clone this repository | ||
|
||
``` | ||
```sh | ||
git clone [email protected]:VaheDanielyan/diffdir.git | ||
``` | ||
|
||
Build and install | ||
|
||
``` | ||
```sh | ||
cargo install --path . | ||
``` | ||
|
||
## Usage | ||
|
||
``` | ||
```sh | ||
NAME | ||
diffdir - A cli tool to compare two directories | ||
SYNOPSIS | ||
|
@@ -41,8 +41,6 @@ OPTIONS | |
Print version | ||
<DIR_A> | ||
<DIR_B> | ||
VERSION | ||
v0.4.2 | ||
AUTHORS | ||
Vahe Danielyan <[email protected]> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#![doc = include_str!(concat!(env!("CARGO_MANIFEST_DIR"), "/README.md"))] | ||
|
||
pub mod diffcmp; | ||
pub mod args; | ||
pub mod diffcmp; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters