-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
62 lines (54 loc) · 1.43 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
[workspace]
members = [
# "slow5-typed",
"slow5-derive",
"slow5lib-sys",
"examples/parallel-read",
"examples/slow5-serde",
]
[workspace.package]
authors = ["Brandon Saint-John <bsaintjo@ucsc.edu>"]
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/bsaintjo/slow5-rs"
[workspace.dependencies]
version-sync = "0.9.4"
cstr = "0.2.10"
libc = "0.2.126"
[package]
name = "slow5"
version = "0.12.1"
readme = "README.md"
homepage = "https://github.com/hasindu2008/slow5lib"
description = "Library for interacting with slow5"
documentation = "https://docs.rs/slow5"
# include = ["/examples", "/slow5lib-sys/examples"]
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
rust-version = "1.70"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs", "--cfg", "doc_auto_cfg"]
[build]
rustdocflags = ["--cfg", "docsrs", "--cfg", "doc_auto_cfg"]
[dependencies]
cstr.workspace = true
libc.workspace = true
log = "0.4.17"
paste = "1.0.9"
serde = { version = "1.0.152", optional = true }
slow5lib-sys = { version = "0.10.0", path = "./slow5lib-sys", default-features = false }
thiserror = "1.0.30"
[dev-dependencies]
anyhow = "1.0.56"
assert_fs = "1.0.7"
doc-comment = "0.3.3"
serde_test = "1.0.152"
version-sync.workspace = true
[features]
default = ["zstd"]
zstd = ["slow5lib-sys/zstd"]
zlib-ng = ["slow5lib-sys/zlib-ng"]
serde = ["dep:serde"]