Skip to content

Commit 77a9e99

Browse files
committed
edition: set edition=2018
1 parent 459a9c5 commit 77a9e99

File tree

9 files changed

+9
-0
lines changed

9 files changed

+9
-0
lines changed

crates/cli/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ repository = "https://github.com/BurntSushi/ripgrep/tree/master/crates/cli"
1111
readme = "README.md"
1212
keywords = ["regex", "grep", "cli", "utility", "util"]
1313
license = "Unlicense/MIT"
14+
edition = "2018"
1415

1516
[dependencies]
1617
atty = "0.2.11"

crates/globset/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ repository = "https://github.com/BurntSushi/ripgrep/tree/master/crates/globset"
1313
readme = "README.md"
1414
keywords = ["regex", "glob", "multiple", "set", "pattern"]
1515
license = "Unlicense/MIT"
16+
edition = "2018"
1617

1718
[lib]
1819
name = "globset"

crates/grep/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ repository = "https://github.com/BurntSushi/ripgrep/tree/master/crates/grep"
1111
readme = "README.md"
1212
keywords = ["regex", "grep", "egrep", "search", "pattern"]
1313
license = "Unlicense/MIT"
14+
edition = "2018"
1415

1516
[dependencies]
1617
grep-cli = { version = "0.1.5", path = "../cli" }

crates/ignore/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ repository = "https://github.com/BurntSushi/ripgrep/tree/master/crates/ignore"
1212
readme = "README.md"
1313
keywords = ["glob", "ignore", "gitignore", "pattern", "file"]
1414
license = "Unlicense/MIT"
15+
edition = "2018"
1516

1617
[lib]
1718
name = "ignore"

crates/matcher/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ readme = "README.md"
1212
keywords = ["regex", "pattern", "trait"]
1313
license = "Unlicense/MIT"
1414
autotests = false
15+
edition = "2018"
1516

1617
[dependencies]
1718
memchr = "2.1"

crates/pcre2/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ repository = "https://github.com/BurntSushi/ripgrep/tree/master/crates/pcre2"
1111
readme = "README.md"
1212
keywords = ["regex", "grep", "pcre", "backreference", "look"]
1313
license = "Unlicense/MIT"
14+
edition = "2018"
1415

1516
[dependencies]
1617
grep-matcher = { version = "0.1.2", path = "../matcher" }

crates/printer/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ repository = "https://github.com/BurntSushi/ripgrep/tree/master/crates/printer"
1212
readme = "README.md"
1313
keywords = ["grep", "pattern", "print", "printer", "sink"]
1414
license = "Unlicense/MIT"
15+
edition = "2018"
1516

1617
[features]
1718
default = ["serde1"]

crates/regex/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ repository = "https://github.com/BurntSushi/ripgrep/tree/master/crates/regex"
1111
readme = "README.md"
1212
keywords = ["regex", "grep", "search", "pattern", "line"]
1313
license = "Unlicense/MIT"
14+
edition = "2018"
1415

1516
[dependencies]
1617
aho-corasick = "0.7.3"

crates/searcher/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ repository = "https://github.com/BurntSushi/ripgrep/tree/master/crates/searcher"
1111
readme = "README.md"
1212
keywords = ["regex", "grep", "egrep", "search", "pattern"]
1313
license = "Unlicense/MIT"
14+
edition = "2018"
1415

1516
[dependencies]
1617
bstr = { version = "0.2.0", default-features = false, features = ["std"] }

0 commit comments

Comments
 (0)