https://github.com/algbio/matchtigs
Revision 00ad2b41aba332d6589ae166733125bc0da00e9c authored by sebschmi on 09 August 2022, 10:48:53 UTC, committed by GitHub on 09 August 2022, 10:48:53 UTC
1 parent 14f925d
Raw File
Tip revision: 00ad2b41aba332d6589ae166733125bc0da00e9c authored by sebschmi on 09 August 2022, 10:48:53 UTC
Update README.md
Tip revision: 00ad2b4
Cargo.toml
[package]
name = "matchtigs"
version = "1.2.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 = {version = "3.0.0", features = ["traitgraph-algo"]}
traitgraph-algo = {version = "5.1.0", features = ["hashbrown_dijkstra_node_weight_array"]}
log = "0.4.14"
simplelog = "0.12.0"
clap = {version = "3.2.16", 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