[package]
edition = "2024"
name = "dtmf_table"
version = "1.1.2"
authors = ["Jack Geraghty <jgeraghty049@gmail.com>"]
build = false
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",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A zero-heap, no_std, const-first DTMF keypad frequency table with runtime tolerance helpers. Also available in Python"
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",
]
license = "MIT"
repository = "https://github.com/jmg049/dtmf_table"
[features]
default = []
python = [
"dep:pyo3",
"std",
]
std = []
[lib]
name = "dtmf_table"
crate-type = [
"rlib",
"cdylib",
]
path = "src/lib.rs"
[dependencies.pyo3]
version = "0.27.2"
features = [
"extension-module",
"experimental-inspect",
]
optional = true