forked from vsbuffalo/granges
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
46 lines (38 loc) · 1.07 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
[package]
name = "granges"
version = "0.1.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"] }
coitrees = { version = "0.4.0", features = ["nosimd"] }
flate2 = "1.0.28"
genomap = "0.2.6"
indexmap = "2.2.3"
ndarray = "0.15.6"
noodles = { version = "0.63.0", features = ["core", "bed"] }
rand = "0.8.5"
tempfile = "3.10.0"
thiserror = "1.0.57"
[features]
# cli = [ "clap" ] // TODO make feature
dev-commands = [ ]
[profile.release]
opt-level = 3
[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