-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
73 lines (65 loc) · 1.54 KB
/
Copy pathCargo.toml
File metadata and controls
73 lines (65 loc) · 1.54 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[package]
name = "jam-rs"
version = "0.9.11"
edition = "2024"
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.102"
dashmap = "6.1.0"
jamhash = "0.1.2"
needletail = { version = "0.6.3", features = [
"flate2",
"bzip2",
"xz2",
"zstd",
] }
rayon = "1.11.0"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0"
clap = { version = "4.5.60", features = ["derive"] }
tempfile = "3.25.0"
crossfire = "3.1.3"
bytemuck = { version = "1.25.0", features = ["derive"] }
memmap2 = "0.9.10"
xorf = { version = "0.12", features = ["serde"] }
thiserror = "2"
indicatif = "0.18.4"
statrs = "0.18"
[target.'cfg(not(target_env = "msvc"))'.dependencies]
tikv-jemallocator = "0.6"
[dev-dependencies]
criterion = { version = "0.8.2", features = ["html_reports"] }
jamhash = "0.1.2"
murmurhash3 = { version = "0.0.5" }
fastmurmur3 = "0.2.0"
xxhash-rust = { version = "0.8.15", features = ["xxh3"] }
roaring = "0.11.3"
rand = "0.10.0"
foldhash = "0.2.0"
[[bench]]
name = "benchmarks"
harness = false
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
panic = "abort"