-
-
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.
Unify a library and cli into one crate
- Loading branch information
1 parent
ee75208
commit b808588
Showing
10 changed files
with
140 additions
and
164 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,23 +1,18 @@ | ||
[package] | ||
name = "suggestion-cli" | ||
version = "0.3.1" | ||
name = "suggestion" | ||
version = "0.3.2" | ||
edition = "2021" | ||
authors = ["Ken Matsui <[email protected]>"] | ||
description = "A CLI tool for similar name suggestions to provide helps like \"Did you mean?\"" | ||
description = "A minimal library & CLI tool to provide similar name suggestions like \"Did you mean?\"" | ||
license = "MIT" | ||
readme = "README.md" | ||
repository = "https://github.com/ken-matsui/suggestion/" | ||
homepage = "https://github.com/ken-matsui/suggestion#readme" | ||
documentation = "https://docs.rs/suggestion-cli" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[workspace] | ||
members = ["suggestion"] | ||
documentation = "https://docs.rs/suggestion" | ||
|
||
[dependencies] | ||
clap = { version = "3.0.13", features = ["derive"] } | ||
suggestion = { path = "suggestion", version = "0.3.0" } | ||
lev_distance = "0.1.1" | ||
|
||
[[bin]] | ||
name = "suggest" | ||
|
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
File renamed without changes.
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.