-
Notifications
You must be signed in to change notification settings - Fork 13
/
Cargo.toml
38 lines (32 loc) · 1.04 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
[package]
name = "triple_accel"
version = "0.4.0"
authors = ["c0deb0t <[email protected]>"]
edition = "2018"
license = "MIT"
description = "Rust edit distance routines accelerated using SIMD. Supports fast Hamming, Levenshtein, restricted Damerau-Levenshtein, etc. distance calculations and string search."
homepage = "https://github.com/Daniel-Liu-c0deb0t/triple_accel"
repository = "https://github.com/Daniel-Liu-c0deb0t/triple_accel"
readme = "README.md"
keywords = ["SIMD", "levenshtein", "hamming", "string-search", "string-distance"]
categories = ["algorithms", "hardware-support", "science", "text-processing"]
[features]
# automatic selection of which type of Jewel vector to use by default
default = ["jewel-avx", "jewel-sse", "jewel-8bit", "jewel-16bit", "jewel-32bit"]
jewel-avx = []
jewel-sse = []
jewel-8bit = []
jewel-16bit = []
jewel-32bit = []
debug = []
[profile.release]
opt-level = 3
codegen-units = 1
panic = "abort"
[[bench]]
name = "rand_benchmarks"
harness = false
[dependencies]
[dev-dependencies]
criterion = "0.3"
rand = "0.7.3"