Skip to content

Commit d6b1dfb

Browse files
committed
Bump dep versions and release 0.2.1.
Specifically, we bump the dep on aho-corasick to 0.6.0, which includes a dep on memchr 1.0.0. This avoids compiling two distinct versions of memchr into every regex build.
1 parent a9c52b6 commit d6b1dfb

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "regex"
3-
version = "0.2.0" #:version
3+
version = "0.2.1" #:version
44
authors = ["The Rust Project Developers"]
55
license = "MIT/Apache-2.0"
66
readme = "README.md"
@@ -14,17 +14,17 @@ finite automata and guarantees linear time matching on all inputs.
1414

1515
[dependencies]
1616
# For very fast prefix literal matching.
17-
aho-corasick = "0.5.3"
17+
aho-corasick = "0.6.0"
1818
# For skipping along search text quickly when a leading byte is known.
19-
memchr = "1"
19+
memchr = "1.0.0"
2020
# For managing regex caches quickly across multiple threads.
2121
thread_local = "0.3.2"
2222
# For parsing regular expressions.
2323
regex-syntax = { path = "regex-syntax", version = "0.4.0" }
2424
# For accelerating text search.
25-
simd = { version = "0.1.0", optional = true }
25+
simd = { version = "0.1.1", optional = true }
2626
# For compiling UTF-8 decoding into automata.
27-
utf8-ranges = "1"
27+
utf8-ranges = "1.0.0"
2828

2929
[dev-dependencies]
3030
# For examples.

0 commit comments

Comments
 (0)