Skip to content

Commit 17894c8

Browse files
committed
progress: doc updates
1 parent 7934b2a commit 17894c8

File tree

2 files changed

+406
-146
lines changed

2 files changed

+406
-146
lines changed

Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ unstable = ["pattern"]
151151
# by default if the unstable feature is enabled.
152152
pattern = []
153153

154-
# For very fast prefix literal matching.
154+
# For very fast multi-prefix literal matching.
155155
[dependencies.aho-corasick]
156156
version = "1.0.0"
157157
optional = true
@@ -161,22 +161,22 @@ optional = true
161161
version = "2.5.0"
162162
optional = true
163163

164-
# For parsing regular expressions.
165-
[dependencies.regex-syntax]
166-
path = "regex-syntax"
167-
version = "0.7.1"
168-
default-features = false
169-
170164
# For the actual regex engines.
171165
[dependencies.regex-automata]
172166
path = "regex-automata"
173167
version = "0.3.0"
174168
default-features = false
175169
features = ["alloc", "syntax", "meta", "nfa-pikevm"]
176170

171+
# For parsing regular expressions.
172+
[dependencies.regex-syntax]
173+
path = "regex-syntax"
174+
version = "0.7.1"
175+
default-features = false
176+
177177
[dev-dependencies]
178178
# For examples.
179-
lazy_static = "1"
179+
once_cell = "1.17.1"
180180
# For property based tests.
181181
quickcheck = { version = "1.0.3", default-features = false }
182182
# To check README's example

0 commit comments

Comments
 (0)