-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
67 lines (56 loc) · 1.36 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[workspace]
members = [
"examples/arrow-example",
"examples/convert-to-slow5",
"examples/find-all-reads",
]
[workspace.package]
authors = ["Brandon Saint-Joh <saint-john@lbl.gov>"]
[package]
name = "pod5"
version = "0.1.0"
edition = "2021"
authors.workspace = true
description = "Interacting with POD5 files in Rust."
readme = "README.md"
repository = "https:://github.com/bsaintjo/pod5-rs"
license = "MIT OR Apache-2.0"
keywords = ["nanopore", "genomics", "FAST5", "POD5", "sequencing"]
categories = [
"science",
"parsing",
"data-structures",
"compression",
"encoding",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# encode/decode of sizes in control bytes in svb
bitvec = "1.0.1"
delta-encoding = "0.4.0"
zigzag = "0.1.0"
zstd = "0.13.0"
# chunking control bytes during decoding
itertools = "0.13.0"
# Parsing footer schema
flatbuffers = "24.3.25"
# Error handling
thiserror = "2.0.4"
# DataFrame API
polars-arrow = { version = "0.44.2", features = ["io_ipc", "compute_cast"] }
polars = { version = "0.44.2", features = [
"dtype-full",
"dtype-array",
"timezones",
"lazy",
] }
# Parsing read ids
uuid = "1.7.0"
log = "0.4.20"
arrow = "53.3.0"
[dev-dependencies]
doc-comment = "0.3.3"
eyre = "0.6.8"
# Testing small files by memmap
memmap2 = "0.9.5"
proptest = "1.4.0"