-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (32 loc) · 934 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
[package]
name = "city-spellcheck"
version = "0.1.1"
authors = ["Peter Farr <[email protected]>"]
edition = "2018"
license = "MIT"
description = "city-spellcheck is a library that gives city spelling corrections using a fuzzy search that takes distance from supplied gps coordinates into weighting"
keywords = ["city", "spellcheck", "fuzzy", "search", "geo"]
repository = "https://github.com/PrismaPhonic/city-spellcheck"
documentation = "https://docs.rs/city-spellcheck"
readme = "README.md"
include = [
"**/*.rs",
"Cargo.toml",
"README.md",
]
[badges]
travis-ci = { repository = "PrismaPhonic/city-spellcheck", branch = "master" }
maintenance = { status = "actively-developed" }
[dependencies]
rayon = "1.0.3"
distance = "0.4.0"
serde_derive = "1.0.84"
serde = "1.0.84"
lazy_static = "1.1.0"
redis = "0.9.1"
sift4 = "0.1.2"
[dev-dependencies]
criterion = "0.2.7"
[[bench]]
name = "my_benchmark"
harness = false