forked from wwood/CoverM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (35 loc) · 1.05 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
[package]
name = "coverm"
version = "0.4.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"
[dependencies]
bio = "0.30.*"
rust-htslib = { version="0.30.*", default-features = false }
clap = "2.*"
log = "0.4.*"
env_logger = "0.7.*"
nix = "0.17.*"
tempdir = "0.3.*"
tempfile = "3.*"
ansi_term = "0.12"
lazy_static = "1.3.0"
rand = "0.7.*"
serde = "1.0"
version-compare = "0.0.10"
bird_tool_utils = "0.1.0"
galah = {git = "https://github.com/wwood/galah", rev = "64cb41a07d917c1af5d90a0b5f983a68b07543a9"}
man = "0.3.0"
[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-test", "run-cargo-fmt"] }