-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (27 loc) · 570 Bytes
/
Copy pathCargo.toml
File metadata and controls
28 lines (27 loc) · 570 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[package]
name = "exec-diff"
version = "0.1.1"
description = "A small utility to execute the GNU diff command"
edition = "2021"
authors = ["khai96_ <hvksmr1996@gmail.com>"]
readme = "README.md"
license = "MIT"
documentation = "https://docs.rs/exec-diff"
repository = "https://github.com/KSXGitHub/exec-diff.git"
keywords = [
"diff",
"gnu-diff",
"wrapper",
]
include = [
"/src",
"/Cargo.toml",
"/README.md",
"/LICENSE.md",
]
[dependencies]
pipe-trait = "0.4.0"
derive_more = "0.99.17"
command-extra = "1.0.0"
tempfile = "3.5.0"
pretty_assertions = "1.4.0"