-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
52 lines (41 loc) · 1.21 KB
/
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
49
50
51
52
[package]
name = "berlin-core"
version = "0.2.6"
edition = "2021"
license = "MIT"
description = "Identify locations and tag them with UN-LOCODEs and ISO-3166-2 subdivisions."
readme = "README.md"
repository = "https://gitlab.com/flaxandteal/onyx/berlin-rs"
keywords = ["geospatial", "nlp", "search"]
categories = ["science::geo", "text-processing"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ustr = { version = "0.8.1", features = ["serde", "serialization"] }
smallvec = { version = "1.8.0", features = ["serde"] }
ahash = "0.7.6"
regex = "1.5.4"
rayon = "1.5.1"
strum = "0.23.0"
strum_macros = "0.23.1"
nom = "7.1.0"
csv = "1.1.6"
serde = { version = "1.0.133", features = ["derive"] }
serde_json = "1.0.74"
schemars = { version = "0.8.8", features = ["smallvec"] }
tracing = { version = "0.1.29", features = ["log"] }
deunicode = "1.3.1"
unicode-segmentation = "1.9.0"
strsim = "0.10.0"
petgraph = "0.6.0"
fst = { version = "0.4.7", features = ["levenshtein"] }
indextree = "4.6.0"
[profile.dev]
split-debuginfo = "unpacked"
debug = true
[profile.release]
incremental = true
debug = false
opt-level = 3
lto = "thin"
[dev-dependencies]
rstest = "0.17.0"