-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
46 lines (39 loc) · 869 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
42
43
44
45
46
[package]
name = "chrom_mini_graph"
version = "0.1.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bio = "*"
rand = "0.8.3"
fnv = "*"
fxhash = "*"
debruijn = "*"
disjoint-sets = "*"
smallvec = { version = "*", features = ["union","serde"] }
# block-aligner = { version = "^0.2.0", features = ["simd_avx2"] }
block-aligner = { version = "^0.3.0", features = ["simd_avx2"] }
# libwfa = "*"
serde = "*"
serde_json = "1.0"
clap = "*"
bincode = "*"
rust-htslib = "*"
ndarray = "*"
probability = "*"
rayon = "*"
simple_logger = "*"
log = "*"
radsort = "*"
range_minimum_query = "0.1.0"
[dependencies.lsd]
path = "src/libs/lsd"
[dependencies.cmg_shared]
path = "src/libs/cmg_shared"
[profile.release]
opt-level = 3
[profile.dev]
opt-level = 3
debug = true
[profile.bench]
debug = true