[package]
name = "dtmf_table"
version = "1.1.2"
edition = "2024"
authors = ["Jack Geraghty <jgeraghty049@gmail.com>"]
description = "A zero-heap, no_std, const-first DTMF keypad frequency table with runtime tolerance helpers. Also available in Python"
license = "MIT"
repository = "https://github.com/jmg049/dtmf_table"
homepage = "https://github.com/jmg049/dtmf_table"
documentation = "https://docs.rs/dtmf_table"
readme = "README.md"
keywords = ["dtmf", "telephony", "audio", "no_std", "const"]
categories = ["no-std", "embedded", "multimedia"]
exclude = [
"/python/",
"pyproject.toml",
"uv.lock",
"/docs/",
"build_docs.py",
"deploy_docs.sh",
"/examples/",
"/tests/",
"/benches/",
"*.png",
"*.jpg",
"*.jpeg",
"*.gif",
"*.pdf",
"*.zip",
".github/",
"*.code-workspace",
]
[lib]
name = "dtmf_table"
path = "src/lib.rs"
crate-type = ["rlib", "cdylib"]
[features]
default = []
std = []
python = ["dep:pyo3", "std"]
[dependencies]
pyo3 = { version = "0.27.2", features = [
"extension-module",
"experimental-inspect",
], optional = true }