[package]
edition = "2021"
name = "cyto-cli"
version = "0.7.2"
authors = ["Noam Teyssier <noam.teyssier@arcinstitute.org>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Ultra high-throughput processing of 10x-flex single-cell sequencing data"
readme = "README.md"
keywords = [
"flex",
"binseq",
"single-cell",
"probe",
"sequencing",
]
categories = [
"command-line-utilities",
"science::bioinformatics",
]
license = "BSD-3-Clause"
repository = "https://github.com/arcinstitute/cyto"
resolver = "3"
[lib]
name = "cyto_cli"
path = "src/lib.rs"
[dependencies.anyhow]
version = "1.0.102"
[dependencies.binseq]
version = "0.9.0"
[dependencies.clap]
version = "4.5.60"
features = ["derive"]
[dependencies.cyto-io]
version = "0.2.0"
[dependencies.ibu]
version = "0.2.1"
[dependencies.log]
version = "0.4.29"
[dependencies.num_cpus]
version = "1.17.0"
[dependencies.paraseq]
version = "0.4.8"
[lints.clippy]
cast_possible_truncation = "allow"
cast_precision_loss = "allow"
len_without_is_empty = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_inception = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
struct_field_names = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1