forked from ZimaBlueAI/SegPE
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
executable file
·58 lines (52 loc) · 1.46 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
50
51
52
53
54
55
56
57
58
[package]
name = "segpe"
version = "0.1.14"
edition = "2021"
authors = ["BENM(Binxiao) Feng <[email protected]>"]
rust-version = "1.77.0"
description = "a simple program for classifing and separating PE FASTQ after removing adapters via adapter-index seq"
keywords = ["fasta", "fa", "fastq", "fq", "adapter", "index", "seed", "fmindex", "cli", "sequence", "bio"]
categories = ["algorithms", "hardware-support", "science", "text-processing"]
readme = "README.md"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[package.metadata.docs.rs]
# features = ["simd_neon"]
# Intel x86 change to
features = ["simd_avx2"]
[features]
# Enable SSE2
simd_sse2 = []
# Enable AVX2
simd_avx2 = []
# Enable WASM SIMD
simd_wasm = []
# Enable Neon
simd_neon = []
# No SIMD
no_simd = []
# Print lots of debug information
debug = ["debug_size"]
# Print only the final block sizes
debug_size = []
# Prepare code for analysis by llvm-mca
mca = []
[dependencies]
regex = "1.10.3"
memmap2 = "0.9.4"
# fastq = "0.6.0"
crossbeam = "0.8.4"
crossbeam-channel = "0.5.12"
bio = "1.6.0"
fastq = "0.6.0"
needletail = "0.5.1"
clap = { version = "4.5.4", features = ["derive"] }
glob = "0.3.1"
futures = "0.3.30"
tokio = { version = "1.37.0", features = ["full"] }
flate2 = "1.0.28"
env_logger = "0.11.3"
log = "0.4.21"
# Intel x86 change to
[target.'cfg(target_arch = "x86_64")'.dependencies]
block-aligner = { version = "0.5", features = ["simd_avx2"] }