[package]
name = "radtk"
version = "0.2.0"
edition = "2021"
repository = "https://github.com/COMBINE-lab/radtk"
website = "https://combine-lab.github.io/radtk"
authors = [ "Rob Patro <rob@cs.umd.edu>" ]
description = "A toolkit for working with RAD files"
readme = "README.md"
license-file = "LICENSE"
include = [
"/src/*.rs",
"/Cargo.toml",
"/Cargo.lock",
"/README.md",
"/LICENSE",
]
keywords = [
"RAD-file",
"RNA-seq",
"single-cell",
"preprocessing"
]
categories = ["command-line-utilities", "science"]
[dependencies]
anyhow = "1.0.86"
clap = { version = "4.5.13", features = ["derive"] }
indicatif = "0.17.8"
libradicl = { git = "https://github.com/COMBINE-lab/libradicl", branch = "develop", version = "0.9.0" }
needletail = "0.5.1"
scroll = "0.12.0"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["tracing", "env-filter", "fmt", "std"] }
[profile.dist]
inherits = "release"
lto = "thin"
[workspace.metadata.dist]
cargo-dist-version = "0.19.1"
ci = "github"
installers = ["shell"]
targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu"]
pr-run-mode = "plan"
install-updater = true
install-path = "CARGO_HOME"
[workspace.metadata.dist.github-custom-runners]
aarch64-apple-darwin = "macos-14"