forked from rust-bio/rust-bio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
53 lines (47 loc) · 1.29 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
[package]
name = "bio"
version = "0.28.3-alpha.0"
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"
build = "build.rs"
edition = "2018"
[dependencies]
bytecount = { version = "0.5.1", features = ["runtime-dispatch-simd"] }
csv = "1.0"
num-traits = "0.2"
num-integer = "0.1"
itertools = "0.7"
itertools-num = "0.1"
bv = { version = "0.10", features = ["serde"] }
bit-set = "0.5"
ndarray= "0.12"
lazy_static = "1.0"
serde = "1.0"
serde_derive = "1.0"
approx = "0.3"
custom_derive = "0.1"
newtype_derive = "0.1"
ordered-float = "1.0"
quick-error = "1.2"
regex = "1.0"
multimap = "0.4"
fxhash = "0.2"
statrs = "0.11"
bio-types = ">=0.5.1"
fnv = "1.0"
strum = "0.15"
strum_macros = "0.15"
[dependencies.vec_map]
version = "0.8"
features = ["eders"]
[dependencies.petgraph]
version = "0.4"
features = ["stable_graph"]
[package.metadata.release]
pre-release-commit-message = "release version {{version}}"
tag-message = "Version {{version}} of Rust-Bio."