-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
49 lines (40 loc) · 1.11 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
[package]
name = "alphabeta"
version = "0.2.1"
edition = "2021"
description = "Tools for analysing epigenetic data."
license = "GPL-3.0"
repository = "https://github.com/constantingoeldel/alphabeta-rs"
[lib]
name = "alphabeta"
path = "src/lib.rs"
[[bin]]
name = "alphabeta"
path = "src/cli/alphabeta.rs"
[[bin]]
name = "metaprofile"
path = "src/cli/metaprofile.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
argmin = "0.8.0"
argmin-math = { version = "0.3", features = ["ndarray_latest-serde", "nalgebra_latest-serde"] }
ndarray = { version = "0.15.0", features = ["blas"]}
blas-src = { version = "0.8.0", features = ["openblas"] }
openblas-src = { version = "0.10", features = ["static"] }
rand = "0.8.5"
rayon = "1.6.1"
petgraph = "0.6.2"
anyhow = "1.0.68"
clap = { version = "4.1.4", features = ["derive"] }
indicatif = "0.17.3"
thiserror = "1.0.40"
itertools = "0.10.5"
plotters = "0.3.4"
ndarray-stats = "0.5.1"
noisy_float = "0.2.0"
ndarray-npy = "0.8.1"
[dev-dependencies]
criterion = "0.4"
[[bench]]
name = "alphabeta_benchmark"
harness = false