-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
61 lines (52 loc) · 1.5 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
[package]
name = "granges"
version = "0.4.0"
edition = "2021"
license = "MIT"
authors = ["Vince Buffalo <[email protected]>"]
keywords = ["genomics", "bioinformatics", "compbio"]
categories = ["science"]
documentation = "https://docs.rs/granges/"
repository = "https://github.com/vsbuffalo/granges"
description = "A Rust library and command line tool for genomic range operations."
[dependencies]
# clap = { version = "4.4.18", features = ["derive"], optional = true }
clap = { version = "4.4.18", features = ["derive", "wrap_help"] }
coitrees = { version = "0.4.0", features = ["nosimd"] }
flate2 = { version = "1.0.28", features = ["zlib-ng-compat"] }
genomap = "0.2.6"
indexmap = "2.2.3"
ndarray = { version = "0.15.6", optional = true}
noodles = { version = "0.63.0", features = ["core", "bed", "fasta"] }
rand = "0.8.5"
tempfile = "3.10.0"
thiserror = "1.0.57"
polars = { version = "0.37.0", optional = true }
bytes = "1.5.0"
ndarray-npy = { version = "0.8.1", optional = true }
num-traits = "0.2.18"
lazy_static = "1.4.0"
csv = "1.3.0"
serde = { version = "1.0.197", features = ["derive"] }
[features]
dev-commands = [ ]
bench-big = []
polars = ["dep:polars"]
ndarray = ["dep:ndarray", "dep:ndarray-npy"]
big-position = []
[profile.release]
opt-level = 3
lto = true
[profile.dev]
opt-level = 1
[[bin]]
name = "granges"
path = "src/main/mod.rs"
[dev-dependencies]
criterion = { version = "0.5.1", features = ["html_reports"] }
[[bench]]
name = "bedtools_comparison"
harness = false
[[bench]]
name = "io"
harness = false