-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
50 lines (41 loc) · 951 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
46
47
48
49
50
[package]
name = "anchr"
version = "0.3.18"
authors = ["wang-q <[email protected]>"]
edition = "2021"
description = "Assembler of N-free CHRomosomes"
documentation = "https://github.com/wang-q/anchr"
readme = "README.md"
homepage = "https://github.com/wang-q/anchr"
repository = "https://github.com/wang-q/anchr"
license = "MIT"
categories = ["command-line-utilities", "science"]
publish = false
[[bin]]
name = "anchr"
path = "src/anchr.rs"
[dependencies]
clap = { version = "4.5.21", features = ["cargo"] }
anyhow = "1.0.93"
regex = "1.11.1"
lazy_static = "1.5.0"
itertools = "0.13.0"
flate2 = "1.0.25"
tera = "1.20.0"
intspan = "0.7.9"
# data structure
petgraph = "0.6.5"
layout-rs = "0.1.2"
rustworkx-core = "0.14.2"
indexmap = "2.0.0"
which = "7.0.0"
tempfile = "3.14.0"
cmd_lib = "1.9.4"
path-clean = "1.0.1"
bio = "0.30.1"
[build-dependencies]
[dev-dependencies]
assert_cmd = "2.0.12"
predicates = "3.0.3"
[profile.release]
lto = true