-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
36 lines (32 loc) · 856 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 = "suffix_array"
version = "0.5.0"
authors = ["hucsmn <hucsmn@hotmail.com>"]
edition = "2018"
homepage = "https://github.com/hucsmn/suffix_array"
repository = "https://github.com/hucsmn/suffix_array"
license = "MIT"
readme = "README.md"
categories = ["algorithms"]
keywords = ["suffix_array", "binary", "sais"]
description = """
Suffix array construction and searching algorithms for in-memory binary data.
"""
[dependencies]
cdivsufsort = "2.0"
bitpacking = { optional = true, version = "0.8" }
serde = { optional = true, version = "1.0", features = ["derive"] }
bincode = { optional = true, version = "1.2" }
[dev-dependencies]
rand = "0.6"
flate2 = "1"
reqwest = "0.9"
criterion = "0.2"
ouroboros = "0.15"
proptest = "0.9"
[features]
default = []
pack = ["bitpacking", "serde", "bincode"]
[[bench]]
name = "sa_search"
harness = false