summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Gallant <jamslam@gmail.com>2020-02-17 18:19:19 -0500
committerAndrew Gallant <jamslam@gmail.com>2020-02-17 19:24:53 -0500
commitfdd8510fdda6109c562e479c718d42c8ecc26263 (patch)
treef510c952f62d0ebdcbf689000b2d7aebc90d5ba7
parent0bc4f0447b05468f043e06278a3ca2b1c5646f9b (diff)
repo: move all source code in crates directory
The top-level listing was just getting a bit too long for my taste. So put all of the code in one directory and shrink the large top-level mess to a small top-level mess. NOTE: This commit only contains renames. The subsequent commit will actually make ripgrep build again. We do it this way with the naive hope that this will make it easier for git history to track the renames. Sigh.
-rw-r--r--crates/cli/Cargo.toml (renamed from grep-cli/Cargo.toml)0
-rw-r--r--crates/cli/LICENSE-MIT (renamed from globset/LICENSE-MIT)0
-rw-r--r--crates/cli/README.md (renamed from grep-cli/README.md)0
-rw-r--r--crates/cli/UNLICENSE (renamed from globset/UNLICENSE)0
-rw-r--r--crates/cli/src/decompress.rs (renamed from grep-cli/src/decompress.rs)0
-rw-r--r--crates/cli/src/escape.rs (renamed from grep-cli/src/escape.rs)0
-rw-r--r--crates/cli/src/human.rs (renamed from grep-cli/src/human.rs)0
-rw-r--r--crates/cli/src/lib.rs (renamed from grep-cli/src/lib.rs)0
-rw-r--r--crates/cli/src/pattern.rs (renamed from grep-cli/src/pattern.rs)0
-rw-r--r--crates/cli/src/process.rs (renamed from grep-cli/src/process.rs)0
-rw-r--r--crates/cli/src/wtr.rs (renamed from grep-cli/src/wtr.rs)0
-rw-r--r--crates/core/app.rs (renamed from src/app.rs)0
-rw-r--r--crates/core/args.rs (renamed from src/args.rs)0
-rw-r--r--crates/core/config.rs (renamed from src/config.rs)0
-rw-r--r--crates/core/logger.rs (renamed from src/logger.rs)0
-rw-r--r--crates/core/main.rs (renamed from src/main.rs)0
-rw-r--r--crates/core/messages.rs (renamed from src/messages.rs)0
-rw-r--r--crates/core/path_printer.rs (renamed from src/path_printer.rs)0
-rw-r--r--crates/core/search.rs (renamed from src/search.rs)0
-rw-r--r--crates/core/subject.rs (renamed from src/subject.rs)0
-rw-r--r--crates/globset/COPYING (renamed from globset/COPYING)0
-rw-r--r--crates/globset/Cargo.toml (renamed from globset/Cargo.toml)0
-rw-r--r--crates/globset/LICENSE-MIT (renamed from grep-cli/LICENSE-MIT)0
-rw-r--r--crates/globset/README.md (renamed from globset/README.md)0
-rw-r--r--crates/globset/UNLICENSE (renamed from grep-cli/UNLICENSE)0
-rw-r--r--crates/globset/benches/bench.rs (renamed from globset/benches/bench.rs)0
-rw-r--r--crates/globset/src/glob.rs (renamed from globset/src/glob.rs)0
-rw-r--r--crates/globset/src/lib.rs (renamed from globset/src/lib.rs)0
-rw-r--r--crates/globset/src/pathutil.rs (renamed from globset/src/pathutil.rs)0
-rw-r--r--crates/grep/COPYING (renamed from grep/COPYING)0
-rw-r--r--crates/grep/Cargo.toml (renamed from grep/Cargo.toml)0
-rw-r--r--crates/grep/LICENSE-MIT (renamed from grep-matcher/LICENSE-MIT)0
-rw-r--r--crates/grep/README.md (renamed from grep/README.md)0
-rw-r--r--crates/grep/UNLICENSE (renamed from grep-matcher/UNLICENSE)0
-rw-r--r--crates/grep/examples/simplegrep.rs (renamed from grep/examples/simplegrep.rs)0
-rw-r--r--crates/grep/src/lib.rs (renamed from grep/src/lib.rs)0
-rw-r--r--crates/ignore/COPYING (renamed from ignore/COPYING)0
-rw-r--r--crates/ignore/Cargo.toml (renamed from ignore/Cargo.toml)0
-rw-r--r--crates/ignore/LICENSE-MIT (renamed from grep-pcre2/LICENSE-MIT)0
-rw-r--r--crates/ignore/README.md (renamed from ignore/README.md)0
-rw-r--r--crates/ignore/UNLICENSE (renamed from grep-pcre2/UNLICENSE)0
-rw-r--r--crates/ignore/examples/walk.rs (renamed from ignore/examples/walk.rs)0
-rw-r--r--crates/ignore/src/default_types.rs (renamed from ignore/src/default_types.rs)0
-rw-r--r--crates/ignore/src/dir.rs (renamed from ignore/src/dir.rs)0
-rw-r--r--crates/ignore/src/gitignore.rs (renamed from ignore/src/gitignore.rs)0
-rw-r--r--crates/ignore/src/lib.rs (renamed from ignore/src/lib.rs)0
-rw-r--r--crates/ignore/src/overrides.rs (renamed from ignore/src/overrides.rs)0
-rw-r--r--crates/ignore/src/pathutil.rs (renamed from ignore/src/pathutil.rs)0
-rw-r--r--crates/ignore/src/types.rs (renamed from ignore/src/types.rs)0
-rw-r--r--crates/ignore/src/walk.rs (renamed from ignore/src/walk.rs)0
-rw-r--r--crates/ignore/tests/gitignore_matched_path_or_any_parents_tests.gitignore (renamed from ignore/tests/gitignore_matched_path_or_any_parents_tests.gitignore)0
-rw-r--r--crates/ignore/tests/gitignore_matched_path_or_any_parents_tests.rs (renamed from ignore/tests/gitignore_matched_path_or_any_parents_tests.rs)0
-rw-r--r--crates/matcher/Cargo.toml (renamed from grep-matcher/Cargo.toml)0
-rw-r--r--crates/matcher/LICENSE-MIT (renamed from grep-printer/LICENSE-MIT)0
-rw-r--r--crates/matcher/README.md (renamed from grep-matcher/README.md)0
-rw-r--r--crates/matcher/UNLICENSE (renamed from grep-printer/UNLICENSE)0
-rw-r--r--crates/matcher/src/interpolate.rs (renamed from grep-matcher/src/interpolate.rs)0
-rw-r--r--crates/matcher/src/lib.rs (renamed from grep-matcher/src/lib.rs)0
-rw-r--r--crates/matcher/tests/test_matcher.rs (renamed from grep-matcher/tests/test_matcher.rs)0
-rw-r--r--crates/matcher/tests/tests.rs (renamed from grep-matcher/tests/tests.rs)0
-rw-r--r--crates/matcher/tests/util.rs (renamed from grep-matcher/tests/util.rs)0
-rw-r--r--crates/pcre2/Cargo.toml (renamed from grep-pcre2/Cargo.toml)0
-rw-r--r--crates/pcre2/LICENSE-MIT (renamed from grep-regex/LICENSE-MIT)0
-rw-r--r--crates/pcre2/README.md (renamed from grep-pcre2/README.md)0
-rw-r--r--crates/pcre2/UNLICENSE (renamed from grep-regex/UNLICENSE)0
-rw-r--r--crates/pcre2/src/error.rs (renamed from grep-pcre2/src/error.rs)0
-rw-r--r--crates/pcre2/src/lib.rs (renamed from grep-pcre2/src/lib.rs)0
-rw-r--r--crates/pcre2/src/matcher.rs (renamed from grep-pcre2/src/matcher.rs)0
-rw-r--r--crates/printer/Cargo.toml (renamed from grep-printer/Cargo.toml)0
-rw-r--r--crates/printer/LICENSE-MIT (renamed from grep-searcher/LICENSE-MIT)0
-rw-r--r--crates/printer/README.md (renamed from grep-printer/README.md)0
-rw-r--r--crates/printer/UNLICENSE (renamed from grep-searcher/UNLICENSE)0
-rw-r--r--crates/printer/src/color.rs (renamed from grep-printer/src/color.rs)0
-rw-r--r--crates/printer/src/counter.rs (renamed from grep-printer/src/counter.rs)0
-rw-r--r--crates/printer/src/json.rs (renamed from grep-printer/src/json.rs)0
-rw-r--r--crates/printer/src/jsont.rs (renamed from grep-printer/src/jsont.rs)0
-rw-r--r--crates/printer/src/lib.rs (renamed from grep-printer/src/lib.rs)0
-rw-r--r--crates/printer/src/macros.rs (renamed from grep-printer/src/macros.rs)0
-rw-r--r--crates/printer/src/standard.rs (renamed from grep-printer/src/standard.rs)0
-rw-r--r--crates/printer/src/stats.rs (renamed from grep-printer/src/stats.rs)0
-rw-r--r--crates/printer/src/summary.rs (renamed from grep-printer/src/summary.rs)0
-rw-r--r--crates/printer/src/util.rs (renamed from grep-printer/src/util.rs)0
-rw-r--r--crates/regex/Cargo.toml (renamed from grep-regex/Cargo.toml)0
-rw-r--r--crates/regex/LICENSE-MIT (renamed from grep/LICENSE-MIT)0
-rw-r--r--crates/regex/README.md (renamed from grep-regex/README.md)0
-rw-r--r--crates/regex/UNLICENSE (renamed from grep/UNLICENSE)0
-rw-r--r--crates/regex/src/ast.rs (renamed from grep-regex/src/ast.rs)0
-rw-r--r--crates/regex/src/config.rs (renamed from grep-regex/src/config.rs)0
-rw-r--r--crates/regex/src/crlf.rs (renamed from grep-regex/src/crlf.rs)0
-rw-r--r--crates/regex/src/error.rs (renamed from grep-regex/src/error.rs)0
-rw-r--r--crates/regex/src/lib.rs (renamed from grep-regex/src/lib.rs)0
-rw-r--r--crates/regex/src/literal.rs (renamed from grep-regex/src/literal.rs)0
-rw-r--r--crates/regex/src/matcher.rs (renamed from grep-regex/src/matcher.rs)0
-rw-r--r--crates/regex/src/multi.rs (renamed from grep-regex/src/multi.rs)0
-rw-r--r--crates/regex/src/non_matching.rs (renamed from grep-regex/src/non_matching.rs)0
-rw-r--r--crates/regex/src/strip.rs (renamed from grep-regex/src/strip.rs)0
-rw-r--r--crates/regex/src/util.rs (renamed from grep-regex/src/util.rs)0
-rw-r--r--crates/regex/src/word.rs (renamed from grep-regex/src/word.rs)0
-rw-r--r--crates/searcher/Cargo.toml (renamed from grep-searcher/Cargo.toml)0
-rw-r--r--crates/searcher/LICENSE-MIT (renamed from ignore/LICENSE-MIT)0
-rw-r--r--crates/searcher/README.md (renamed from grep-searcher/README.md)0
-rw-r--r--crates/searcher/UNLICENSE (renamed from ignore/UNLICENSE)0
-rw-r--r--crates/searcher/examples/search-stdin.rs (renamed from grep-searcher/examples/search-stdin.rs)0
-rw-r--r--crates/searcher/src/lib.rs (renamed from grep-searcher/src/lib.rs)0
-rw-r--r--crates/searcher/src/line_buffer.rs (renamed from grep-searcher/src/line_buffer.rs)0
-rw-r--r--crates/searcher/src/lines.rs (renamed from grep-searcher/src/lines.rs)0
-rw-r--r--crates/searcher/src/macros.rs (renamed from grep-searcher/src/macros.rs)0
-rw-r--r--crates/searcher/src/searcher/core.rs (renamed from grep-searcher/src/searcher/core.rs)0
-rw-r--r--crates/searcher/src/searcher/glue.rs (renamed from grep-searcher/src/searcher/glue.rs)0
-rw-r--r--crates/searcher/src/searcher/mmap.rs (renamed from grep-searcher/src/searcher/mmap.rs)0
-rw-r--r--crates/searcher/src/searcher/mod.rs (renamed from grep-searcher/src/searcher/mod.rs)0
-rw-r--r--crates/searcher/src/sink.rs (renamed from grep-searcher/src/sink.rs)0
-rw-r--r--crates/searcher/src/testutil.rs (renamed from grep-searcher/src/testutil.rs)0
113 files changed, 0 insertions, 0 deletions
diff --git a/grep-cli/Cargo.toml b/crates/cli/Cargo.toml
index 67b83f42..67b83f42 100644
--- a/grep-cli/Cargo.toml
+++ b/crates/cli/Cargo.toml
diff --git a/globset/LICENSE-MIT b/crates/cli/LICENSE-MIT
index 3b0a5dc0..3b0a5dc0 100644
--- a/globset/LICENSE-MIT
+++ b/crates/cli/LICENSE-MIT
diff --git a/grep-cli/README.md b/crates/cli/README.md
index e78317c6..e78317c6 100644
--- a/grep-cli/README.md
+++ b/crates/cli/README.md
diff --git a/globset/UNLICENSE b/crates/cli/UNLICENSE
index 68a49daa..68a49daa 100644
--- a/globset/UNLICENSE
+++ b/crates/cli/UNLICENSE
diff --git a/grep-cli/src/decompress.rs b/crates/cli/src/decompress.rs
index c2b2738b..c2b2738b 100644
--- a/grep-cli/src/decompress.rs
+++ b/crates/cli/src/decompress.rs
diff --git a/grep-cli/src/escape.rs b/crates/cli/src/escape.rs
index 6d06abb5..6d06abb5 100644
--- a/grep-cli/src/escape.rs
+++ b/crates/cli/src/escape.rs
diff --git a/grep-cli/src/human.rs b/crates/cli/src/human.rs
index 68d50ab7..68d50ab7 100644
--- a/grep-cli/src/human.rs
+++ b/crates/cli/src/human.rs
diff --git a/grep-cli/src/lib.rs b/crates/cli/src/lib.rs
index 452ea141..452ea141 100644
--- a/grep-cli/src/lib.rs
+++ b/crates/cli/src/lib.rs
diff --git a/grep-cli/src/pattern.rs b/crates/cli/src/pattern.rs
index 8341e4da..8341e4da 100644
--- a/grep-cli/src/pattern.rs
+++ b/crates/cli/src/pattern.rs
diff --git a/grep-cli/src/process.rs b/crates/cli/src/process.rs
index 4ec5af7f..4ec5af7f 100644
--- a/grep-cli/src/process.rs
+++ b/crates/cli/src/process.rs
diff --git a/grep-cli/src/wtr.rs b/crates/cli/src/wtr.rs
index f7722ce8..f7722ce8 100644
--- a/grep-cli/src/wtr.rs
+++ b/crates/cli/src/wtr.rs
diff --git a/src/app.rs b/crates/core/app.rs
index 7031d804..7031d804 100644
--- a/src/app.rs
+++ b/crates/core/app.rs
diff --git a/src/args.rs b/crates/core/args.rs
index 989f95c2..989f95c2 100644
--- a/src/args.rs
+++ b/crates/core/args.rs