Skip to content

Commit

Permalink
fix: change repo name
Browse files Browse the repository at this point in the history
  • Loading branch information
slip-box committed Jul 27, 2022
1 parent dc75dca commit 9ba6976
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "aiwriteclicheck"
name = "rustsearch"
version = "0.0.1"
edition = "2021"

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ cargo run <keyword> <path>
## Command-line options
```
USAGE:
aiwriteclicheck <KETWORD> <PATH> [OPTIONS]
rust-search <KETWORD> <PATH> [OPTIONS]
ARGS:
<KETWORD> The keywords you want to search for
Expand Down
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ use std::{
use std::ffi::OsStr;
use clap::{App, Arg};

use aiwriteclicheck:: {get_directory_list, search_in_file};
use rustsearch:: {get_directory_list, search_in_file};

fn main() -> Result<(), Error> {
let version = env!("CARGO_PKG_VERSION");
let matches = App::new("rust-search")
.version(version)
.author("ohmyide - https://github.com/ohmyide/aiwriter-cli-check")
.author("ohmyide - https://github.com/ohmyide/rust-search")
.about("A Tiny, Static, Full-text Search with Rust")
.arg(
Arg::with_name("keyword")
Expand Down

0 comments on commit 9ba6976

Please sign in to comment.