[package]
edition = "2021"
rust-version = "1.65"
name = "tinyhgvs"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Lightweight Rust library for parsing HGVS variants."
homepage = "https://github.com/svm-zhang/tinyhgvs"
documentation = "https://docs.rs/tinyhgvs"
readme = "README.md"
keywords = [
"bioinformatics",
"genomics",
"hgvs",
"parser",
"variants",
]
categories = [
"parser-implementations",
"science",
]
license = "MIT"
repository = "https://github.com/svm-zhang/tinyhgvs"
[lib]
name = "tinyhgvs"
path = "src/lib.rs"
[[test]]
name = "test_diagnostics"
path = "tests/test_diagnostics.rs"
[[test]]
name = "test_parser"
path = "tests/test_parser.rs"
[dependencies.nom]
version = "8.0.0"