-
Notifications
You must be signed in to change notification settings - Fork 31
/
Cargo.toml
49 lines (46 loc) · 1.48 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
[package]
name = "coverm"
version = "0.7.0"
authors = ["Ben Woodcroft <[email protected]>"]
license = "GPL-3.0"
description = "Read coverage calculator for metagenomics"
homepage = "https://github.com/wwood/CoverM"
repository = "https://github.com/wwood/CoverM"
documentation = "https://github.com/wwood/CoverM"
readme = "README.md"
exclude = [ # Max upload is 10MB, as of writing test data was 15MB
"tests/*",
]
default-run = "coverm"
edition = "2015"
[dependencies]
bio = "2.0.*"
rust-htslib = { version="0.46.*", default-features = false } # On some systems, https://github.com/rust-bio/rust-htslib/issues/434 bites, so restrict to 0.46
clap = { version="4.*", features = ["cargo"] } # cargo feature required for crate_version!
clap_complete = "4.*"
log = "0.4.*"
env_logger = "0.11.*"
nix = { version="0.29.*", features = ["fs"] }
tempdir = "0.3.*"
tempfile = "3.*"
ansi_term = "0.12"
lazy_static = "1.4.0"
rand = "0.8.*"
serde = "1.0"
version-compare = "0.2.0"
# bird_tool_utils = "0.5.0"
bird_tool_utils = { git = "https://github.com/wwood/bird_tool_utils" }
# bird_tool_utils = { path = "../bird_tool_utils" }
galah = "0.4.0"
# galah = { git = "https://github.com/wwood/galah" }
bird_tool_utils-man = "0.4.0"
roff = "0.2.*"
needletail = "0.5.*"
csv = "1.*"
[dev-dependencies]
assert_cli = "0.6.*"
# Run things before commit but not push
cargo-husky = { version="1", default-features = false, features=["precommit-hook", "run-cargo-fmt", "run-cargo-clippy"] }
[profile.release]
strip = true
lto = true