-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: chengqinglin <[email protected]>
- Loading branch information
Showing
2 changed files
with
17 additions
and
10 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
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 |
---|---|---|
|
@@ -5,9 +5,16 @@ repository = "https://github.com/imuxin/difftastic-lib" | |
homepage = "http://difftastic.wilfred.me.uk/" | ||
license = "MIT" | ||
version = "0.0.2" | ||
authors = ["Wilfred Hughes <[email protected]>", "chengqinglin <[email protected]>"] | ||
authors = [ | ||
"Wilfred Hughes <[email protected]>", | ||
"chengqinglin <[email protected]>", | ||
] | ||
keywords = ["diff", "syntax"] | ||
categories = ["development-tools", "command-line-utilities", "parser-implementations"] | ||
categories = [ | ||
"development-tools", | ||
"command-line-utilities", | ||
"parser-implementations", | ||
] | ||
edition = "2021" | ||
include = [ | ||
"/build.rs", | ||
|
@@ -57,14 +64,6 @@ cc = "1.0.73" | |
rayon = "1.5.2" | ||
version_check = "0.9.4" | ||
|
||
[profile.release] | ||
# Release builds don't have debug symbols by default. We explicitly | ||
# set this flag so it's easier to toggle when profiling with | ||
# flamegraph. | ||
# | ||
# https://doc.rust-lang.org/cargo/reference/profiles.html#release | ||
# debug = false | ||
|
||
[[bin]] | ||
name = "difft" | ||
path = "src/main.rs" | ||
|