summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Gallant <jamslam@gmail.com>2021-06-01 19:31:27 -0400
committerAndrew Gallant <jamslam@gmail.com>2021-06-01 21:07:37 -0400
commit77a9e9996400483eed4a9746759a842d6b774882 (patch)
tree228aec44b55fa294fdc186fba899b7efc48a54a3
parent459a9c563706ef84b8710fab8727b770552ed29c (diff)
edition: set edition=2018
-rw-r--r--crates/cli/Cargo.toml1
-rw-r--r--crates/globset/Cargo.toml1
-rw-r--r--crates/grep/Cargo.toml1
-rw-r--r--crates/ignore/Cargo.toml1
-rw-r--r--crates/matcher/Cargo.toml1
-rw-r--r--crates/pcre2/Cargo.toml1
-rw-r--r--crates/printer/Cargo.toml1
-rw-r--r--crates/regex/Cargo.toml1
-rw-r--r--crates/searcher/Cargo.toml1
9 files changed, 9 insertions, 0 deletions
diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml
index c3f7a8e7..f75fbaca 100644
--- a/crates/cli/Cargo.toml
+++ b/crates/cli/Cargo.toml
@@ -11,6 +11,7 @@ repository = "https://github.com/BurntSushi/ripgrep/tree/master/crates/cli"
readme = "README.md"
keywords = ["regex", "grep", "cli", "utility", "util"]
license = "Unlicense/MIT"
+edition = "2018"
[dependencies]
atty = "0.2.11"
diff --git a/crates/globset/Cargo.toml b/crates/globset/Cargo.toml
index 89e2fa36..6c3d6139 100644
--- a/crates/globset/Cargo.toml
+++ b/crates/globset/Cargo.toml
@@ -13,6 +13,7 @@ repository = "https://github.com/BurntSushi/ripgrep/tree/master/crates/globset"
readme = "README.md"
keywords = ["regex", "glob", "multiple", "set", "pattern"]
license = "Unlicense/MIT"
+edition = "2018"
[lib]
name = "globset"
diff --git a/crates/grep/Cargo.toml b/crates/grep/Cargo.toml
index bcc29da1..ee45aae2 100644
--- a/crates/grep/Cargo.toml
+++ b/crates/grep/Cargo.toml
@@ -11,6 +11,7 @@ repository = "https://github.com/BurntSushi/ripgrep/tree/master/crates/grep"
readme = "README.md"
keywords = ["regex", "grep", "egrep", "search", "pattern"]
license = "Unlicense/MIT"
+edition = "2018"
[dependencies]
grep-cli = { version = "0.1.5", path = "../cli" }
diff --git a/crates/ignore/Cargo.toml b/crates/ignore/Cargo.toml
index 8291b057..0f1f5989 100644
--- a/crates/ignore/Cargo.toml
+++ b/crates/ignore/Cargo.toml
@@ -12,6 +12,7 @@ repository = "https://github.com/BurntSushi/ripgrep/tree/master/crates/ignore"
readme = "README.md"
keywords = ["glob", "ignore", "gitignore", "pattern", "file"]
license = "Unlicense/MIT"
+edition = "2018"
[lib]
name = "ignore"
diff --git a/crates/matcher/Cargo.toml b/crates/matcher/Cargo.toml
index deda58d0..56d91793 100644
--- a/crates/matcher/Cargo.toml
+++ b/crates/matcher/Cargo.toml
@@ -12,6 +12,7 @@ readme = "README.md"
keywords = ["regex", "pattern", "trait"]
license = "Unlicense/MIT"
autotests = false
+edition = "2018"
[dependencies]
memchr = "2.1"
diff --git a/crates/pcre2/Cargo.toml b/crates/pcre2/Cargo.toml
index 79fcf436..ec84f526 100644
--- a/crates/pcre2/Cargo.toml
+++ b/crates/pcre2/Cargo.toml
@@ -11,6 +11,7 @@ repository = "https://github.com/BurntSushi/ripgrep/tree/master/crates/pcre2"
readme = "README.md"
keywords = ["regex", "grep", "pcre", "backreference", "look"]
license = "Unlicense/MIT"
+edition = "2018"
[dependencies]
grep-matcher = { version = "0.1.2", path = "../matcher" }
diff --git a/crates/printer/Cargo.toml b/crates/printer/Cargo.toml
index f4667afb..05e601d2 100644
--- a/crates/printer/Cargo.toml
+++ b/crates/printer/Cargo.toml
@@ -12,6 +12,7 @@ repository = "https://github.com/BurntSushi/ripgrep/tree/master/crates/printer"
readme = "README.md"
keywords = ["grep", "pattern", "print", "printer", "sink"]
license = "Unlicense/MIT"
+edition = "2018"
[features]
default = ["serde1"]
diff --git a/crates/regex/Cargo.toml b/crates/regex/Cargo.toml
index 8e27fb71..bff57f60 100644
--- a/crates/regex/Cargo.toml
+++ b/crates/regex/Cargo.toml
@@ -11,6 +11,7 @@ repository = "https://github.com/BurntSushi/ripgrep/tree/master/crates/regex"
readme = "README.md"
keywords = ["regex", "grep", "search", "pattern", "line"]
license = "Unlicense/MIT"
+edition = "2018"
[dependencies]
aho-corasick = "0.7.3"
diff --git a/crates/searcher/Cargo.toml b/crates/searcher/Cargo.toml
index 57448388..8d3eda8d 100644
--- a/crates/searcher/Cargo.toml
+++ b/crates/searcher/Cargo.toml
@@ -11,6 +11,7 @@ repository = "https://github.com/BurntSushi/ripgrep/tree/master/crates/searcher"
readme = "README.md"
keywords = ["regex", "grep", "egrep", "search", "pattern"]
license = "Unlicense/MIT"
+edition = "2018"
[dependencies]
bstr = { version = "0.2.0", default-features = false, features = ["std"] }