-
-
Notifications
You must be signed in to change notification settings - Fork 126
/
Cargo.toml
45 lines (37 loc) · 1020 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
[package]
name = "fst"
version = "0.4.7" #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = """
Use finite state transducers to compactly represents sets or maps of many
strings (> 1 billion is possible).
"""
documentation = "https://docs.rs/fst"
homepage = "https://github.com/BurntSushi/fst"
repository = "https://github.com/BurntSushi/fst"
readme = "README.md"
keywords = ["search", "information", "retrieval", "dictionary", "map"]
license = "Unlicense/MIT"
edition = "2018"
[workspace]
members = ["bench", "fst-bin"]
exclude = ["fst-levenshtein", "fst-regex"]
[features]
default = []
levenshtein = ["utf8-ranges"]
[patch.crates-io]
fst = { path = "." }
[dependencies]
utf8-ranges = { version = "1.0.4", optional = true }
[dev-dependencies]
doc-comment = "0.3.1"
fnv = "1.0.6"
memmap2 = "0.5.10"
quickcheck = { version = "0.9.2", default-features = false }
rand = "0.7.3"
[profile.release]
debug = true
[profile.bench]
debug = true
[package.metadata.docs.rs]
features = ["levenshtein"]