Skip to content

Commit 9318683

Browse files
committed
Lighter regex dependency.
Detail on rust-lang/regex#613
1 parent 5196ca4 commit 9318683

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Cargo.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,9 @@ edition = "2018"
1515
[dependencies]
1616
base64 = "0.10.0"
1717
byteorder = "1.0"
18+
crc32fast = "1.2.0"
1819
once_cell = "1.0"
19-
regex = "1.0"
20+
regex ={version = "1.3.0", default-features = false, features = ["std"]}
2021
tantivy-fst = "0.1"
2122
memmap = {version = "0.7", optional=true}
2223
lz4 = {version="1.20", optional=true}
@@ -84,6 +85,7 @@ wasm-bindgen = ["uuid/wasm-bindgen"]
8485
travis-ci = { repository = "tantivy-search/tantivy" }
8586

8687
[dev-dependencies.fail]
88+
version = "0.3"
8789
features = ["failpoints"]
8890

8991
# Following the "fail" crate best practises, we isolate

0 commit comments

Comments
 (0)