https://github.com/algbio/matchtigs
Raw File
Tip revision: 336aa0dd363789d0f4031d692fc018ca6a0a878c authored by Sebastian Schmidt on 30 March 2022, 10:07:21 UTC
Release 1.1.0
Tip revision: 336aa0d
Cargo.toml
[package]
name = "matchtigs"
version = "1.1.0"
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.58.1"
license-file = "LICENSE.txt"

[lib]
name = "libmatchtigs"
crate-type = ["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 = "0.8.0"
traitgraph-algo = {version = "0.10.1", features = ["hashbrown_dijkstra_node_weight_array"]}
log = "0.4.14"
simplelog = "0.11.2"
clap = {version = "3.0.14", features = ["derive"]}
itertools = "0.10.3"
atomic-counter = "1.0.1"
disjoint-sets = "0.4.2"
permutation = "0.4.0"
crossbeam = "0.8.1"
hashbrown = "0.12.0"
back to top