[package]
edition = "2021"
name = "motifscan"
version = "0.1.8"
authors = ["Jie Hua <fdjiehua@gmail.com>"]
build = false
exclude = [
".github/**",
".gitignore",
"doc/agent.md",
"doc/benchmark.sh",
"doc/logo.af",
"doc/logo.png",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A fast, streaming, low-memory CLI and Rust library for exact DNA motif scanning in FASTA and FASTQ files."
homepage = "https://github.com/jiehua1995/MotifScan"
readme = "README.md"
keywords = [
"bioinformatics",
"genomics",
"motif",
"fasta",
"fastq",
]
categories = [
"command-line-utilities",
"science",
]
license = "MIT"
repository = "https://github.com/jiehua1995/MotifScan"
[lib]
name = "motifscan"
path = "src/lib.rs"
[[bin]]
name = "motifscan"
path = "src/main.rs"
[dependencies.aho-corasick]
version = "0.7"
[dependencies.anyhow]
version = "1.0"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.csv]
version = "1.3"
[dependencies.flate2]
version = "1.0"
[dependencies.indicatif]
version = "0.17"
[dependencies.memchr]
version = "2.7"
[dependencies.num_cpus]
version = "1.16"
[dependencies.rayon]
version = "1.10"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"env-filter",
"fmt",
]
[dev-dependencies.tempfile]
version = "3.13"
[profile.release]
lto = true
codegen-units = 1
strip = true