-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (38 loc) · 1.07 KB
/
Copy pathCargo.toml
File metadata and controls
43 lines (38 loc) · 1.07 KB
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
41
42
43
[package]
name = "sais_drum"
version = "0.1.1"
authors = ["Felix Leander Droop <info@felix-droop.de>"]
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/feldroop/sais-drum"
documentation = "https://docs.rs/sais-drum"
homepage = "https://github.com/feldroop/sais-drum"
description = "An implementation of the SAIS algorithm for suffix array construction"
categories = [
"science::bioinformatics",
"science::bioinformatics::sequence-analysis",
"text-processing",
"algorithms",
"data-structures",
]
keywords = ["saca", "suffix-array", "suffixarray", "bioinformatics", "bio"]
edition = "2024"
[dependencies]
bitvec = "1"
num-traits = "0.2.19"
num = { version = "0.4", default-features = false }
[dev-dependencies]
proptest = "1.6.0"
rand = "0.9.0"
rand_chacha = "0.9.0"
criterion = "0.7.0"
divsufsort = "2.0.0"
# optimize code for faster proptesting (needs to be removed when debugging tests)
[profile.test]
opt-level = 3
# use criterion benchmark harness exclusively
[lib]
bench = false
[[bench]]
name = "whole_algorithm"
harness = false