-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
71 lines (57 loc) · 1.26 KB
/
Cargo.toml
File metadata and controls
71 lines (57 loc) · 1.26 KB
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
63
64
65
66
67
68
69
70
71
[package]
name = "intspan"
version = "0.8.7"
authors = ["wang-q <wang-q@outlook.com>"]
description = "Command line tools for IntSpan related bioinformatics operations"
documentation = "https://github.com/wang-q/intspan"
homepage = "https://github.com/wang-q/intspan"
repository = "https://github.com/wang-q/intspan"
readme = "README.md"
categories = ["command-line-utilities", "science"]
license = "MIT"
edition = "2018"
[lib]
name = "intspan"
[[bin]]
name = "spanr"
path = "src/spanr.rs"
[[bin]]
name = "linkr"
path = "src/linkr.rs"
[[bin]]
name = "rgr"
path = "src/rgr.rs"
[[example]]
name = "test"
[[example]]
name = "benchmark"
[[example]]
name = "file"
[dependencies]
clap = { version = "4.3.12", features = ["cargo"] }
serde = "1.0.171"
serde_json = "1.0.103"
anyhow = "1.0.72"
regex = "1.9.1"
lazy_static = "1.4.0"
flate2 = "1.0.26"
itertools = "0.11.0"
petgraph = "0.6.3"
indexmap = "2.0.0"
rust-lapper = "1.1.0"
bio = "0.30.1"
crossbeam = "0.8.2"
rust_xlsxwriter = "0.43.0"
csv = "1.3.1"
xxhash-rust = { version = "0.8.15", features = ["xxh3"] }
markdown-table-formatter = "0.3.0"
which = "4.4.0"
cmd_lib = "1.9.4"
tempfile = "3.6.0"
path-clean = "1.0.1"
[build-dependencies]
[dev-dependencies]
assert_cmd = "2.0.12"
predicates = "3.0.3"
[profile.release]
lto = true