-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change inner regex library from "regex" to "fancy_regex" to support `…
…--locator` option's value using syntax like lookaround.
- Loading branch information
Showing
6 changed files
with
46 additions
and
120 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 = "naming_clt" | ||
version = "1.0.0" | ||
version = "1.1.0" | ||
authors = ["Boholder <[email protected]>"] | ||
description = """ | ||
Extract and convert the naming format(case|notation) of identifiers from files or stdin. | ||
|
@@ -27,7 +27,7 @@ members = [ | |
] | ||
|
||
[dependencies] | ||
naming_clt_lib = { version = "0.1.0", path = "crates/naming_clt_lib" } | ||
naming_clt_lib = { version = "0.2.0", path = "crates/naming_clt_lib" } | ||
atty = "~0.2.14" | ||
|
||
[dependencies.clap] | ||
|
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "naming_clt_lib" | ||
version = "0.1.0" | ||
version = "0.2.0" | ||
authors = ["Boholder <[email protected]>"] | ||
description = """ | ||
Functions which serve the command line tool [naming]. | ||
|
@@ -10,6 +10,6 @@ edition = "2018" | |
license = "MIT" | ||
|
||
[dependencies] | ||
regex = "~1.5.4" | ||
fancy-regex = "~0.7.1" | ||
lazy_static = "~1.4.0" | ||
naming_lib = "~0.1.4" |
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
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