Skip to content

Commit 769e104

Browse files
authored
Update Cargo.toml
1 parent a4ebae4 commit 769e104

1 file changed

Lines changed: 25 additions & 13 deletions

File tree

Cargo.toml

Lines changed: 25 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,44 @@
11
[package]
22
name = "pathotypr"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
authors = ["Paula Ruiz Rodriguez <paula.ruiz.rodriguez@csic.es>"]
55
edition = "2021"
6-
description = "Pathotypr is a tool to classify genomes using the train, predict, and classify subcommands."
6+
description = "A high-performance tool for genome classification and variant genotyping."
77
license = "GPL-3"
88
repository = "https://github.com/PathoGenOmics-Lab/pathotypr"
99

1010
[dependencies]
11-
anyhow = "1.0.98"
12-
bio = "2.0.3"
13-
bincode = "1.3"
14-
chrono = "0.4.39"
11+
# CLI and UI
1512
clap = { version = "4.5.28", features = ["derive"] }
16-
csv = "1.3.1"
17-
env_logger = "0.11.6"
18-
flate2 = "1.0"
1913
indicatif = "0.17.0"
2014
log = "0.4"
21-
nalgebra = "0.33.2"
22-
rand = "0.8.0"
15+
env_logger = "0.11.6"
16+
chrono = "0.4.39"
17+
18+
# Core Logic & ML
19+
smartcore = { version = "0.4.1", features = ["serde"] }
20+
rand = { version = "0.8.5", features = ["small_rng"] }
2321
rayon = "1.10.0"
22+
23+
# Data Handling & Serialization
2424
serde = { version = "1.0", features = ["derive"] }
25+
bincode = "1.3.3"
26+
zstd = "0.13.1"
27+
28+
# Bioinformatics
29+
# CORRECTED: The simplest declaration is the correct one.
30+
# No features are needed to access the bit_kmers functionality.
2531
needletail = "0.6.3"
26-
fxhash = "0.2.1"
32+
rustc-hash = "2.0.0"
33+
34+
# Other utilities from the original project
35+
anyhow = "1.0.98"
36+
bio = "2.0.3"
37+
csv = "1.3.1"
38+
nalgebra = "0.33.2"
2739
tempfile = "3.20.0"
2840
ndarray = { version = "0.15", features = ["serde"] }
29-
smartcore = { version = "0.4.1", features = ["serde"] }
3041
gff = "0.1.0"
3142
rust-lapper = "1.1.0"
3243
bio-types = "1.0.4"
44+
fxhash = "0.2.1"

0 commit comments

Comments
 (0)