-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
41 lines (32 loc) · 812 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
[package]
name = "phylo"
version = "1.0.0"
edition = "2021"
authors = ["Sriram Vijendran"]
license = "MIT"
repository = "https://github.com/sriram98v/phylo-rs"
readme = "README.md"
description = "An extensible Phylogenetics library written in rust"
keywords = ["bioinformatics", "phylogenetics"]
categories = ["data-structures", "science"]
[lib]
name = "phylo"
path = "src/lib.rs"
[features]
default = ["non_crypto_hash", "simple_rooted_tree"]
non_crypto_hash = ["dep:fxhash"]
simple_rooted_tree = []
parallel = ["dep:rayon"]
[dependencies]
itertools = "0.11.0"
num = "0.4.1"
rand = "0.8.5"
fxhash = { version = "0.2.1", optional = true }
vers-vecs = "1.5.1"
thiserror = "1.0.65"
rayon = { version = "1.10.0", optional = true}
[dev-dependencies]
divan = "0.1.14"
[[bench]]
name = "main"
harness = false