-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
46 lines (41 loc) · 910 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
[[bin]]
name = "fa2b2"
[package]
name = "fa2b2"
version = "0.2.1"
authors = ["Roel Kluin <r.kluin@nki.nl>"]
edition = "2021"
[lib]
path = "src/lib.rs"
crate-type = ["rlib", "dylib"]
[dependencies]
flate2 = "^1.0"
csv = "^1.2"
arrayvec = "^0.7"
bincode = "^1.3"
smallvec = "^1.10"
clap = {version = "^4.1", features = ["derive"]}
derive-new = "^0.5"
num-traits = "^0.2"
to_default = "^0.1"
num = "^0.4"
rand = "^0.8"
lazy_static = "^1.4"
serde = {version = "^1.0", features = ["derive"]}
anyhow = "^1.0"
ahash = { version = "^0.8", "features" = ["serde"] }
noodles-fasta = "^0.20"
noodles-bam = "^0.28"
noodles-cram = "^0.25"
noodles-fastq = "^0.6"
derive_more = "^0.99"
moveslice = "^2.0"
bitvec = { version = "^1.0", "features" = ["serde"]}
crossbeam = "^0.8"
crossbeam-channel = "^0.5"
crossbeam-queue = "^0.3"
crossbeam-utils = "^0.8"
itertools = "^0.10"
tempfile = "^3"
[profile.release]
debug = true