-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
45 lines (38 loc) · 971 Bytes
/
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 = "recmap"
version = "0.3.5"
edition = "2021"
license = "MIT"
authors = ["Vince Buffalo <[email protected]>"]
keywords = ["genomics", "bioinformatics", "compbio"]
categories = ["science"]
documentation = "https://docs.rs/recmap/"
repository = "https://github.com/vsbuffalo/recmap"
description = "A library for reading and working with recombination maps in Rust"
[lib]
name = "recmap"
path = "src/lib.rs"
[features]
cli = [ "clap" ]
big-position = []
[[bin]]
name = "recmap"
path = "src/main.rs"
required-features = ["cli"]
[dependencies]
csv = "1.3.0"
flate2 = "1.0.28"
genomap = "0.1.3"
indexmap = "2.2.2"
ndarray = "0.15.6"
num-traits = "0.2.17"
serde = { version = "1.0.196", features = ["derive"] }
thiserror = "1.0.56"
clap = { version = "4.4.18", features = ["derive"], optional = true }
[dev-dependencies]
clap = { version = "4.4.18", features = ["derive"] }
tempfile = "3.10.0"
[profile.release]
opt-level = 3
[profile.dev]
opt-level = 3