-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (26 loc) · 701 Bytes
/
Cargo.toml
File metadata and controls
29 lines (26 loc) · 701 Bytes
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
[package]
name = "fuzzdex"
version = "1.2.0"
authors = ["Tomasz bla Fortuna <bla@thera.be>"]
edition = "2021"
license = "MIT"
homepage = "https://github.com/blaa/fuzzdex"
keywords = ["fuzzy", "dictionary", "geocoding"]
[lib]
name = "fuzzdex"
crate-type = ["cdylib"]
[dependencies]
pyo3 = { version = "0.17.3", features = ["extension-module"] }
levenshtein-diff = "0.2.3"
lru = "^0.7"
serde = { version = "1", features = ["derive"] }
regex = "1"
lazy_static = "1"
unicode-segmentation = "1"
unicode-normalization= "0.1"
unicode_categories = "^0.1"
itertools = "^0.10"
# Requires AESNI extensions
# As hashmaps/hashsets are used extensively it speeds up some testcases
# by over 10%.
ahash = "0.8.2"