-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (35 loc) · 941 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
[package]
name = "grepq"
version = "1.4.1"
edition = "2021"
authors = ["Nicholas D. Crosbie"]
license = "MIT"
description = "quickly filter fastq files"
homepage = "https://github.com/Rbfinch/grepq"
documentation = "https://github.com/Rbfinch/grepq"
repository = "https://github.com/Rbfinch/grepq"
readme = "README.md"
categories = ["science"]
keywords = ["bioinformatics", "FASTQ", "REGEX", "JSON", "cli"]
[dependencies]
seq_io = "0.3.2"
regex = "1.11.1"
mimalloc = "0.1.43"
clap = { version = "4.5.26", features = ["derive", "cargo"] }
num_cpus = "1.16.0"
flate2 = { version = "1.0.35", features = ["zlib-ng"], default-features = false }
jsonschema = "0.28.1"
serde_json = "1.0.135"
colored = "3.0.0"
zstd = "0.13.2"
[dev-dependencies]
tempfile = "3.8.1"
criterion = { version = "0.5.1", features = ["html_reports"] }
[lib]
name = "grepq"
path = "src/lib.rs"
[[bench]]
name = "benchmarks"
harness = false
[profile.release]
lto = true