-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
48 lines (42 loc) · 1.19 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
[package]
name = "jam-rs"
version = "0.2.0"
edition = "2021"
repository = "https://github.com/St4NNi/jam-rs"
license = "MIT"
authors = ["Sebastian Beyvers <sebastian.beyvers@cb.jlug.de>"]
description = "Just another (genomic) minhash (Jam) implementation in Rust"
keywords = ["minhash", "metagenomics", "bioinformatics", "containment", "jaccard"]
categories = ["command-line-utilities", "science", "algorithms"]
exclude=["/tests"]
readme = "README.md"
[[bin]]
name = "jam"
path = "src/main.rs"
[lib]
name = "jam_rs"
path = "src/lib.rs"
[dependencies]
anyhow = "1.0.94"
bincode = "1.3.3"
flate2 = "1.0.35"
needletail = "0.6.1"
rayon = "1.10.0"
xxhash-rust = { version = "0.8.12", features = ["xxh3"]}
bytemuck = "1.20.0"
serde = { version = "1.0.216", features = ["derive"] }
clap = { version = "4.5.23", features = ["derive"] }
fastmurmur3 = {version = "0.2.0"}
sourmash = "0.17.2"
serde_json = "1.0.133"
itertools = "0.13.0"
heed = "0.21.0"
byteorder = "1.5.0"
integer-encoding = "4.0.2"
indicatif = { version = "0.17.9", features = ["rayon"] }
[dev-dependencies]
criterion = { version = "0.5.1", features = ["html_reports"] }
murmurhash3 = {version = "0.0.5"}
[[bench]]
name = "benchmarks"
harness = false