-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathCargo.toml
43 lines (40 loc) · 1.28 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
[package]
name = "galah"
version = "0.4.2"
authors = ["Ben Woodcroft <[email protected]>"]
edition = "2018"
license = "GPL-3.0"
description = "Microbial genome dereplicator"
homepage = "https://github.com/wwood/galah"
repository = "https://github.com/wwood/galah"
documentation = "https://github.com/wwood/galah"
readme = "README.md"
exclude = [ # Max upload is 10MB, as of writing test data was 31MB
"tests/*",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version="4.*", features = ["cargo"] } # cargo feature required for crate_version!
log = "0.4.*"
env_logger = "0.11.*"
# checkm = "0.1.*"
checkm = "0.3.0"
rayon = "1.5"
csv = "1.1"
bird_tool_utils = "0.5.*"
# bird_tool_utils = { git = "https://github.com/wwood/bird_tool_utils" }
# bird_tool_utils = { path = "../bird_tool_utils" }
tempfile = "3.*"
finch = "0.6.*"
disjoint = { version = "0.8.*" }
needletail = "0.5.*"
bird_tool_utils-man = "0.4.0"
lazy_static = "1.4.0"
ansi_term = "0.12"
skani = "0.1.1"
# skani = { path = "../skani" }
concurrent-queue = "2"
[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"] }