[package] name = "prepare_fasta" version = "0.1.0" edition = "2021" license = "BSD-3-Clause-Attribution" keywords = ["science", "bioinformatics"] categories = ["command-line-utilities", "science"] repository = "https://github.com/COMBINE-lab/prepare_fasta/" homepage = "https://github.com/COMBINE-lab/prepare_fasta/" readme = "README.md" description = "Compute hash-based signatures of sequence, and perform pre-processing" authors = ["Rob Patro", "Rob Patro "] [lib] name = "prepare_fasta" path = "src/lib.rs" [[bin]] name = "prepare_fasta" path = "src/main.rs" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] anyhow = "1.0.75" clap = { version = "4.4.6", features = ["default", "derive", "wrap_help"] } flate2 = "1.0.27" hex = "0.4.3" needletail = "0.5.1" serde_json = "1.0.107" sha2 = { version = "0.10.8", features = ["asm", "asm-aarch64"] }