-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (20 loc) · 716 Bytes
/
Cargo.toml
File metadata and controls
24 lines (20 loc) · 716 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
[package]
name = "fuzzywuzzy"
version = "0.0.2"
edition = "2018"
authors = ["Logan", "Sean"]
description = "A pure-Rust clone of the incredibly useful fuzzy string matching python package, FuzzyWuzzy."
repository = "https://github.com/logannc/fuzzywuzzy-rs"
readme="README.md"
license = "GPL-2.0-only"
keywords = ["string", "text", "processing", "matching", "fuzzy"]
categories = ["text-processing"]
[features]
default = ["segmentation", "normalization"]
segmentation = ["unicode-segmentation"]
normalization = ["unicode-normalization"]
[dependencies]
unicode-segmentation = { version = "1.7.1", optional = true }
unicode-normalization = { version = "0.1.17", optional = true }
[dev-dependencies]
rand = "0.8.0"