forked from quickwit-inc/fst
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
48 lines (41 loc) · 989 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[package]
name = "tantivy-fst"
version = "0.5.0"
description = """
This is a tantivy-specific fork from the fst crate from Burntsushi. (Please use the fst crate instead.)
"""
documentation = "https://docs.rs/tantivy-fst"
repository = "https://github.com/quickwit-inc/fst"
readme = "README.md"
keywords = ["donotuseme"]
license = "Unlicense/MIT"
edition = "2021"
[[bench]]
name = "build"
path = "./benches/build.rs"
test = false
bench = true
[[bench]]
name = "search"
path = "./benches/search.rs"
test = false
bench = true
[features]
default = ["regex"]
regex = ["regex-syntax"]
[dependencies]
byteorder = "1"
regex-syntax = { version = "0.8", optional = true }
utf8-ranges = "1"
[dev-dependencies]
fnv = "1.0.7"
lazy_static = "1.4"
quickcheck = { version = "0.7", default-features = false }
rand = "0.5"
proptest = "1.4.0"
[profile.release]
debug = true
[profile.bench]
opt-level = 3
debug = true