-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
46 lines (41 loc) · 1.31 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
[package]
name = "matchtigs"
version = "2.1.9"
authors = ["Sebastian Schmidt <sebastian.schmidt@helsinki.fi>"]
description = "Different algorithms for computing small and minimum plain text representations of kmer sets."
keywords = ["compression", "plain-text", "kmer", "genome", "bio"]
categories = ["algorithms", "compression", "command-line-utilities", "science"]
readme = "README.md"
documentation = "https://docs.rs/matchtigs"
homepage = "https://github.com/algbio/matchtigs"
repository = "https://github.com/algbio/matchtigs"
edition = "2021"
rust-version = "1.80.1"
license-file = "LICENSE.txt"
[lib]
name = "libmatchtigs"
crate-type = ["rlib", "dylib"]
path = "src/lib.rs"
[[bin]]
name = "matchtigs"
path = "src/bin.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
lto = true
debug = true
[dependencies]
genome-graph = { version = "11.0.0", features = ["traitgraph-algo"] }
traitgraph-algo = { version = "8.1.2", features = [
"hashbrown_dijkstra_node_weight_array",
] }
log = "0.4.25"
simplelog = "0.12.0"
clap = { version = "4.5.27", features = ["derive", "cargo"] }
itertools = "0.14.0"
atomic-counter = "1.0.1"
disjoint-sets = "0.4.2"
permutation = "0.4.0"
crossbeam = "0.8.1"
hashbrown = "0.15.2"
memory-stats = "1.0.0"
flate2 = { version = "1.0.35" }