[package]
edition = "2024"
name = "nexwick"
version = "0.1.0"
authors = ["Jonathan Klawitter"]
build = false
exclude = [
"examples/",
"target/",
"src/main.rs",
"claude.md",
".*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Parser for Nexus files and Newick strings"
homepage = "https://github.com/joklawitter/nexwick/"
readme = "README.md"
keywords = [
"parser",
"Nexus",
"Newick",
"Phylogenetic",
]
categories = [
"parser-implementations",
"science::bioinformatics",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/joklawitter/nexwick/"
[lib]
name = "nexwick"
path = "src/lib.rs"
[[test]]
name = "test_byte_parser"
path = "tests/test_byte_parser.rs"
[[test]]
name = "test_leaf_label_map"
path = "tests/test_leaf_label_map.rs"
[[test]]
name = "test_newick"
path = "tests/test_newick.rs"
[[test]]
name = "test_nexus"
path = "tests/test_nexus.rs"
[[test]]
name = "tree_tests"
path = "tests/tree_tests.rs"
[[test]]
name = "vertex_tests"
path = "tests/vertex_tests.rs"
[dependencies]