-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (29 loc) · 798 Bytes
/
Cargo.toml
File metadata and controls
35 lines (29 loc) · 798 Bytes
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
[workspace]
members = ["bench"]
[profile.release]
lto = "thin"
incremental = true
debug = true
[workspace.dependencies]
packed-seq = "4.2.0"
seq-hash = "0.1.1"
[package]
name = "simd-minimizers"
version = "2.3.1"
edition = "2024"
license = "MIT"
repository = "https://github.com/rust-seq/simd-minimizers"
keywords = ["minimizers", "simd", "dna", "bioinformatics"]
categories = ["compression", "data-structures", "science::bioinformatics"]
authors = ["Ragnar Groot Koerkamp", "Igor Martayan"]
description = "A SIMD-accelerated library to compute random minimizers"
[dependencies]
clap = { version = "4.5.47", features = ["derive"] }
itertools = "0.14"
packed-seq.workspace = true
seq-hash.workspace = true
wide = "0.7"
[dev-dependencies]
rand = "0.9"
[features]
scalar = ["packed-seq/scalar"]