-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
43 lines (37 loc) · 918 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
41
42
43
[package]
name = "gbwt"
version = "0.3.0"
authors = ["Jouni Siren <[email protected]>"]
edition = "2018"
description = "Partial reimplementation of the GBWT."
license = "MIT"
readme = "README.md"
repository = "https://github.com/jltsiren/gbwt-rs"
[features]
binaries = ["getopts", "libc", "rand", "rayon"]
[dependencies]
simple-sds = { git = "https://github.com/jltsiren/simple-sds", branch = "main" }
getopts = { version = "0.2", optional = true }
libc = { version = "0.2", optional = true }
rand = { version = "0.8", optional = true }
rayon = { version = "1.5", optional = true }
[dev-dependencies]
rand = "0.8"
[[bin]]
name = "benchmark"
required-features = ["binaries"]
test = false
bench = false
doc = false
[[bin]]
name = "gbunzip"
required-features = ["binaries"]
test = false
bench = false
doc = false
[[bin]]
name = "gbz-extract"
required-features = ["binaries"]
test = false
bench = false
doc = false