[package] name = "fastqc-rs" version = "0.3.4" authors = ["Felix Wiegand "] edition = "2018" license = "MIT" description = "A fast quality control tool for FASTQ files written in rust" repository = "https://github.com/fastqc-rs/fastqc-rs" homepage = "https://fastqc-rs.github.io" keywords = ["fastq"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] needletail = "0.5.1" clap = "4.5" serde_json = "1.0.62" tera = "1.6.1" chrono = "0.4.19" reqwest = "0.9.0" rustc-hash = "1.1.0" itertools = "0.10.0" log = { version = "0.4" } env_logger = { version = "0.11" } [[bin]] name = "fqc" path = "src/main.rs" [profile.release] lto = "fat" codegen-units = 1 debug = 1