-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (32 loc) · 902 Bytes
/
Cargo.toml
File metadata and controls
37 lines (32 loc) · 902 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
25
26
27
28
29
30
31
32
33
34
35
36
37
[package]
name = "fm-index"
version = "0.3.0"
authors = ["Koki Kato <koki.kato1994@gmail.com>"]
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"]
[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