-
Notifications
You must be signed in to change notification settings - Fork 445
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'rust-lang:master' into patch-1
- Loading branch information
Showing
107 changed files
with
5,445 additions
and
1,656 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
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,6 +1,6 @@ | ||
[package] | ||
name = "regex" | ||
version = "1.9.1" #:version | ||
version = "1.10.2" #:version | ||
authors = ["The Rust Project Developers", "Andrew Gallant <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
readme = "README.md" | ||
|
@@ -15,7 +15,7 @@ categories = ["text-processing"] | |
autotests = false | ||
exclude = ["/scripts/*", "/.github/*"] | ||
edition = "2021" | ||
rust-version = "1.60.0" | ||
rust-version = "1.65" | ||
|
||
[workspace] | ||
members = [ | ||
|
@@ -52,6 +52,7 @@ std = [ | |
# to actually emit the log messages somewhere. | ||
logging = [ | ||
"aho-corasick?/logging", | ||
"memchr?/logging", | ||
"regex-automata/logging", | ||
] | ||
# The 'use_std' feature is DEPRECATED. It will be removed in regex 2. Until | ||
|
@@ -167,20 +168,20 @@ optional = true | |
|
||
# For skipping along search text quickly when a leading byte is known. | ||
[dependencies.memchr] | ||
version = "2.5.0" | ||
version = "2.6.0" | ||
optional = true | ||
|
||
# For the actual regex engines. | ||
[dependencies.regex-automata] | ||
path = "regex-automata" | ||
version = "0.3.1" | ||
version = "0.4.3" | ||
default-features = false | ||
features = ["alloc", "syntax", "meta", "nfa-pikevm"] | ||
|
||
# For parsing regular expressions. | ||
[dependencies.regex-syntax] | ||
path = "regex-syntax" | ||
version = "0.7.3" | ||
version = "0.8.2" | ||
default-features = false | ||
|
||
[dev-dependencies] | ||
|
Oops, something went wrong.