-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
43 lines (35 loc) · 933 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 = "nuc2bit"
version = "0.1.0"
authors = ["c0deb0t <[email protected]>", "Pierre Marijon <[email protected]>"]
description = "Fast way to convert nucleotide in 2 bit representation"
license = "MIT"
repository = "https://github.com/natir/nuc2bit"
homepage = "https://github.com/natir/nuc2bit"
readme = "Readme.md"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
[dev-dependencies]
criterion = "0.3"
rand = "0.7"
[features]
default = []
bench-internals = []
[lib]
bench = false
[[bench]]
name = "nuc2bit"
path = "benches/nuc2bit.rs"
harness = false
required-features = ["bench-internals"]
[[bench]]
name = "bit2nuc"
path = "benches/bit2nuc.rs"
harness = false
required-features = ["bench-internals"]
[[bench]]
name = "complement"
path = "benches/complement.rs"
harness = false
required-features = ["bench-internals"]