forked from Daniel-Liu-c0deb0t/ANTISEQUENCE
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
23 lines (21 loc) · 778 Bytes
/
Copy pathCargo.toml
File metadata and controls
23 lines (21 loc) · 778 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "antisequence"
version = "0.1.0"
edition = "2021"
[dependencies]
needletail = "0.5"
rustc-hash = "1.1"
flate2 = { version = "1.0", features = ["zlib-ng"], default-features = false }
regex = "1.8"
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9"
thiserror = "1.0"
rand = { version = "0.8", default-features = false }
rand_xoshiro = "0.6"
thread_local = "1.1"
memchr = "2.5"
colored = "2.0"
[target.'cfg(target_arch = "x86_64")'.dependencies]
block-aligner = { git = "https://github.com/Daniel-Liu-c0deb0t/block-aligner", branch = "dev", features = ["simd_avx2"] }
[target.'cfg(target_arch = "aarch64")'.dependencies]
block-aligner = { git = "https://github.com/Daniel-Liu-c0deb0t/block-aligner", branch = "dev", features = ["simd_neon"] }