rapidtrees 0.3.0

Fast pairwise tree distance calculations (Robinson-Foulds, Weighted RF, Kuhner-Felsenstein) for phylogenetic trees
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "rapidtrees"
version = "0.3.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fast pairwise tree distance calculations (Robinson-Foulds, Weighted RF, Kuhner-Felsenstein) for phylogenetic trees"
homepage = "https://github.com/Joon-Klaps/rapidtrees"
readme = "README.md"
keywords = [
    "phylogenetics",
    "tree-distance",
    "robinson-foulds",
    "bioinformatics",
]
categories = [
    "science",
    "command-line-utilities",
]
license = "MIT"
repository = "https://github.com/Joon-Klaps/rapidtrees"

[features]
cli = [
    "clap",
    "flate2",
]
default = ["cli"]
python = ["pyo3"]

[lib]
name = "rapidtrees"
crate-type = [
    "rlib",
    "cdylib",
]
path = "src/lib.rs"

[[bin]]
name = "rapidtrees"
path = "src/main.rs"
required-features = ["cli"]

[[bench]]
name = "memory_time_benchmark"
path = "benches/memory_time_benchmark.rs"
harness = false

[dependencies.clap]
version = "4.5"
features = ["derive"]
optional = true

[dependencies.flate2]
version = "1"
optional = true

[dependencies.phylotree]
version = "0.1.3"

[dependencies.pyo3]
version = "0.27.1"
features = ["extension-module"]
optional = true

[dependencies.rayon]
version = "1"

[dependencies.rustc-hash]
version = "2.1"

[dev-dependencies.cpu-time]
version = "1.0.0"

[dev-dependencies.criterion]
version = "0.7.0"

[dev-dependencies.itertools]
version = "0.14.0"

[dev-dependencies.memory-stats]
version = "1.0.0"

[dev-dependencies.rand]
version = "0.9.2"