|
| 1 | +[package] |
| 2 | +name = "radtk" |
| 3 | +version = "0.2.0" |
| 4 | +edition = "2021" |
| 5 | +repository = "https://github.com/COMBINE-lab/radtk" |
| 6 | +website = "https://combine-lab.github.io/radtk" |
| 7 | +authors = [ "Rob Patro < [email protected]>" ] |
| 8 | +description = "A toolkit for working with RAD files" |
| 9 | +readme = "README.md" |
| 10 | +license-file = "LICENSE" |
| 11 | +include = [ |
| 12 | + "/src/*.rs", |
| 13 | + "/Cargo.toml", |
| 14 | + "/Cargo.lock", |
| 15 | + "/README.md", |
| 16 | + "/LICENSE", |
| 17 | +] |
| 18 | +keywords = [ |
| 19 | + "RAD-file", |
| 20 | + "RNA-seq", |
| 21 | + "single-cell", |
| 22 | + "preprocessing" |
| 23 | +] |
| 24 | +categories = ["command-line-utilities", "science"] |
| 25 | +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html |
| 26 | + |
| 27 | +[dependencies] |
| 28 | +anyhow = "1.0.86" |
| 29 | +clap = { version = "4.5.13", features = ["derive"] } |
| 30 | +indicatif = "0.17.8" |
| 31 | +libradicl = { git = "https://github.com/COMBINE-lab/libradicl", branch = "develop", version = "0.9.0" } |
| 32 | +needletail = "0.5.1" |
| 33 | +scroll = "0.12.0" |
| 34 | +tracing = "0.1.40" |
| 35 | +tracing-subscriber = { version = "0.3.18", features = ["tracing", "env-filter", "fmt", "std"] } |
| 36 | + |
| 37 | +# The profile that 'cargo dist' will build with |
| 38 | +[profile.dist] |
| 39 | +inherits = "release" |
| 40 | +lto = "thin" |
| 41 | + |
| 42 | +# Config for 'cargo dist' |
| 43 | +[workspace.metadata.dist] |
| 44 | +# The preferred cargo-dist version to use in CI (Cargo.toml SemVer syntax) |
| 45 | +cargo-dist-version = "0.19.1" |
| 46 | +# CI backends to support |
| 47 | +ci = "github" |
| 48 | +# The installers to generate for each app |
| 49 | +installers = ["shell"] |
| 50 | +# Target platforms to build apps for (Rust target-triple syntax) |
| 51 | +targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu"] |
| 52 | +# Publish jobs to run in CI |
| 53 | +pr-run-mode = "plan" |
| 54 | +# Whether to install an updater program |
| 55 | +install-updater = true |
| 56 | +# Path that installers should place binaries in |
| 57 | +install-path = "CARGO_HOME" |
| 58 | + |
| 59 | +[workspace.metadata.dist.github-custom-runners] |
| 60 | +aarch64-apple-darwin = "macos-14" |
0 commit comments