-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (32 loc) · 936 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[package]
name = "bustools_cli"
version = "0.5.1"
edition = "2021"
license = " GPL-3.0-or-later"
description = "Rust reimplementation of bustools for scRNAseq processing"
homepage = "https://github.com/redst4r/bustools_cli-rs"
repository = "https://github.com/redst4r/bustools_cli-rs"
keywords = ["scrnaseq", "kallisto", "bus", "single-cell", "rnaseq"]
categories = ["science"]
readme = "README.md"
include = ["/src", "README.md"]
[dependencies]
indicatif = "0.17"
clap = { version = "4", features = ["derive"] }
sprs = "0.11"
statrs = "0.17"
rand = "0.8"
probability="0.20" # for faster Binomial Sampling, using inverse pdf
itertools="0.13"
tempfile="3.10"
bktree="1"
# bustools = { path = "/home/michi/Dropbox/rustbustools" }
bustools ="0.14"
#pyo3 = "0.20.0" # testing CUHistogram conversion
[dev-dependencies]
criterion = "0.5"
ndarray="0.15.6"
[[bench]]
name = "my_benchmark"
harness = false
path = "benches/my_benchmark.rs"