forked from rust-bio/rust-bio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
69 lines (61 loc) · 1.86 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[package]
name = "bio"
version = "2.0.3"
authors = ["Johannes Köster <[email protected]>"]
description = "A bioinformatics library for Rust. This library provides implementations of many algorithms and data structures that are useful for bioinformatics, but also in other fields."
homepage = "https://rust-bio.github.io"
repository = "https://github.com/rust-bio/rust-bio"
documentation = "https://docs.rs/bio"
readme = "README.md"
license = "MIT"
edition = "2018"
include = ["src/**/*", "LICENSE.md", "README.md", "CHANGELOG.md", "build.rs"]
[package.metadata.release]
pre-release-commit-message = "release version {{version}}"
tag-message = "Version {{version}} of Rust-Bio."
[features]
runtime-dispatch-simd = ["bytecount/runtime-dispatch-simd"]
generic-simd = ["bytecount/generic-simd"]
phylogeny = ["pest", "pest_derive", "bio-types/phylogeny"]
[dependencies]
bytecount = "0.6"
csv = "1.1"
num-traits = "0.2"
num-integer = "0.1"
itertools = ">=0.8, <0.14"
itertools-num = "0.1"
bv = { version = "0.11", features = ["serde"] }
bit-set = "0.8"
ndarray= ">=0.15, <0.17"
lazy_static = "1.4"
serde = "1.0"
serde_derive = "1.0"
approx = ">=0.3, <0.6"
custom_derive = "0.1"
newtype_derive = "0.1"
ordered-float = "4.2"
regex = { version = "1.3", default-features = false, features = ["std", "perf"] }
multimap = ">=0.6, <0.11"
fxhash = "0.2"
statrs = ">= 0.11, < 0.18"
bio-types = ">=1.0.0"
pest = { version = "2", optional = true }
pest_derive = { version = "2", optional = true }
strum = ">= 0.16, < 0.27"
strum_macros = ">= 0.16, < 0.27"
enum-map = ">=0.6.4, <3"
triple_accel = ">=0.3, <0.5"
thiserror = "1"
anyhow = "1"
rand = ">=0.7.3, < 0.9"
editdistancek = ">=1.0.1, <2"
[dependencies.vec_map]
version = "0.8"
features = ["eders"]
[dependencies.petgraph]
version = ">=0.4, <0.7"
features = ["stable_graph"]
[dev-dependencies]
proptest = "1"
tempfile = "3.1.0"
rand = "0.8.3"