-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
28 lines (26 loc) · 787 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
[package]
name = "spikeq"
version = "1.0.1"
edition = "2021"
authors = ["Nicholas D. Crosbie"]
license = "MIT"
description = "A synthetic FASTQ record generator with pattern spiking"
homepage = "https://github.com/Rbfinch/spikeq"
documentation = "https://github.com/Rbfinch/spikeq"
repository = "https://github.com/Rbfinch/spikeq"
readme = "README.md"
categories = ["science"]
keywords = ["bioinformatics", "FASTQ", "JSON", "regex", "spike"]
[dependencies]
seq_io = "0.3.2"
regex = "1.11.1"
clap = { version = "4.5.23", features = ["derive", "cargo"] }
jsonschema = "0.27.0"
serde_json = "1.0.134"
rand = "0.8.5"
serde = { version = "1.0.216", features = ["derive"] }
uuid = { version = "1.11.0", features = ["v4"] }
colored = "2.2.0"
once_cell = "1.20.2"
[profile.release]
lto = true