-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
51 lines (41 loc) · 1.28 KB
/
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
44
45
46
47
48
49
50
51
[package]
edition = "2024"
name = "zoe"
version = "0.0.13"
rust-version = "1.87"
description = "A nightly library for viral genomics"
license = "Apache-2.0"
# Long-term maintainers of the Zoe library
authors = ["Samuel S. Shepard <[email protected]>"]
categories = [
"science::bioinformatics::sequence-analysis",
"science::bioinformatics::genomics",
"algorithms",
]
keywords = ["alignment", "simd", "kmer", "search", "distance"]
repository = "https://github.com/CDCgov/zoe"
readme = "README.md"
[lib]
name = "zoe"
[features]
default = ["rand"]
# An optional feature for generating random nucleotide and amino acid sequences
rand = ["dep:rand_xoshiro"]
# An optional feature that provides SIMD multiversioning of selected Zoe
# functions
multiversion = ["dep:multiversion"]
# An optional feature adding the implementation of Arbitrary to many Zoe types,
# for fuzz-testing
arbitrary = ["dep:arbitrary"]
[dependencies]
arbitrary = { version = "*", optional = true, features = ["derive"] }
multiversion = { version = "*", optional = true }
rand_xoshiro = { version = "*", optional = true }
itoa = "*"
[profile.release]
strip = true
lto = "thin"
[package.metadata.docs.rs]
# needed for rand docs
features = ["rand", "arbitrary"]
rustdoc-args = ["--html-in-header", "./assets/docs-header.html"]