forked from quickwit-inc/fst
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
44 lines (38 loc) · 896 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
[package]
name = "izihawa-fst"
version = "0.4.0"
authors = ["Andrew Gallant <[email protected]>"] # forked from Andrew Gallant's work
description = """
This is a tantivy-specific fork from the fst crate from Burntsushi. (Please use the fst crate instead.)
"""
documentation = "https://docs.rs/izihawa-fst"
repository = "https://github.com/izihawa/fst"
readme = "README.md"
keywords = ["donotuseme"]
license = "Unlicense/MIT"
edition = "2018"
[[bench]]
name = "build"
path = "./benches/build.rs"
test = false
bench = true
[[bench]]
name = "search"
path = "./benches/search.rs"
test = false
bench = true
[dependencies]
byteorder = "1"
regex-syntax = "0.6"
utf8-ranges = "1"
[dev-dependencies]
fnv = "1.0.5"
lazy_static = "1.4"
quickcheck = { version = "0.7", default-features = false }
rand = "0.5"
proptest = "0.9.4"
[profile.release]
debug = true
[profile.bench]
opt-level = 3
debug = true