-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
54 lines (47 loc) · 1.05 KB
/
Copy pathCargo.toml
File metadata and controls
54 lines (47 loc) · 1.05 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[package]
name = "kira-scio"
description = "Deterministic single-cell input reader stack for MTX/H5AD/BD Rhapsody in Kira tools."
version = "0.2.1"
edition = "2024"
rust-version = "1.95"
license = "MIT"
repository = "https://github.com/ARyaskov/kira-scio"
keywords = [
"bioinformatics",
"single-cell",
"mtx",
"h5ad",
"parser"
]
categories = [
"science",
"science::bioinformatics",
"command-line-utilities",
"algorithms"
]
[lib]
name = "kira_scio"
path = "src/lib.rs"
# `loom` is reserved for a future reader; the current `formats::loom` module
# is a placeholder that returns FeatureDisabled regardless of the flag.
[dependencies]
flate2 = { version = "1", features = ["zlib-rs"] }
unicode-normalization = "0.1"
thiserror = "2"
rustc-hash = "2"
tracing = "0.1"
itoa = "1"
[dependencies.hdf5]
version = "0.8"
optional = true
[dependencies.ndarray]
version = "0.15"
optional = true
[features]
default = []
h5ad = ["dep:hdf5", "dep:ndarray"]
[profile.release]
opt-level = 3
lto = "thin"
codegen-units = 1
debug = "line-tables-only"