-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
52 lines (48 loc) · 1.49 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
[package]
name = "chainfile"
authors = ["St. Jude Rust Labs"]
version = "0.3.0"
description = "A crate for working with genomics chain files."
license = "Apache-2.0/MIT"
homepage = "https://github.com/stjude-rust-labs/chainfile"
repository = "https://github.com/stjude-rust-labs/chainfile"
documentation = "https://docs.rs/chainfile"
edition = "2021"
rust-version = "1.80.0"
[dependencies]
omics = { version = "0.2.0", features = ["coordinate", "position-u64"] }
anyhow = { version = "1.0.89", optional = true }
clap = { version = "4.5.20", features = ["derive"], optional = true }
clap-verbosity-flag = { version = "2.2.2", optional = true }
flate2 = "1.0.25"
nonempty = "0.9.0"
rand = { version = "0.8.5", optional = true }
regex = "1.11.1"
reqwest = { version = "0.12.12", features = ["blocking"], optional = true }
rust-lapper = "1.1.0"
tempdir = { version = "0.3.7", optional = true }
tracing = { version = "0.1.40", optional = true }
tracing-log = "0.2.0"
tracing-subscriber = { version = "0.3.18", features = [
"env-filter",
], optional = true }
weighted_rand = { version = "0.4.2", optional = true }
[dev-dependencies]
noodles = { version = "0.87.0", features = ["core", "fasta"] }
tabled = { version = "0.16.0" }
[features]
default = []
binaries = [
"dep:anyhow",
"dep:clap",
"dep:clap-verbosity-flag",
"dep:rand",
"dep:reqwest",
"dep:tempdir",
"dep:tracing",
"dep:tracing-subscriber",
"dep:weighted_rand",
]
[[bin]]
name = "compare-crossmap"
required-features = ["binaries"]