[package] name = "phylodm" version = "3.2.0" authors = ["Aaron Mussig "] edition = "2021" description = "Efficient calculation of phylogenetic distance matrices." readme = "README.md" repository = "https://github.com/aaronmussig/PhyloDM" license = "GPL-3.0" rust-version = "1.75.0" [lib] crate-type = ["cdylib", "rlib"] [features] python = ["pyo3", "numpy"] [dependencies] light_phylogeny = "2.2.7" derive_more = { version = "1.0.0", features = ["add", "sum"] } itertools = "0.13" pyo3 = { version = "0.21.2", features = ["extension-module"], optional = true } numpy = { version = "0.21.0", optional = true } ndarray = "0.15.6" [profile.release] lto = true codegen-units = 1 opt-level = 3 strip = true