-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
40 lines (34 loc) · 959 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
37
38
39
40
[package]
name = "fm-index"
version = "0.2.0"
authors = ["Koki Kato <[email protected]>"]
edition = "2021"
description = "FM index and its variant implementations for Rust."
repository = "https://github.com/ajalab/fm-index"
readme = "README.md"
homepage = "https://github.com/ajalab/fm-index"
documentation = "https://docs.rs/fm-index"
license = "MIT OR Apache-2.0"
keywords = ["fm-index", "self-index", "succinct", "search", "vers"]
categories = ["data-structures", "algorithms"]
[badges]
travis-ci = { repository = "ajalab/fm-index" }
[dependencies]
vers-vecs = { version = "1.5.1", features = ["serde"] }
num-traits = "0.2"
serde = { version = "1.0", features = ["derive"] }
[dev-dependencies]
rand = "0.6.5"
criterion = "0.5"
[[bench]]
name = "construction"
path = "benches/construction.rs"
harness = false
[[bench]]
name = "locate"
path = "benches/locate.rs"
harness = false
[[bench]]
name = "count"
path = "benches/count.rs"
harness = false