shabda 1.1.0

shabda — Grapheme-to-phoneme (G2P) conversion: text to phoneme sequences for vocal synthesis
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.89"
name = "shabda"
version = "1.1.0"
build = false
exclude = [
    ".claude/",
    ".github/",
    "docs/",
    "scripts/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "shabda — Grapheme-to-phoneme (G2P) conversion: text to phoneme sequences for vocal synthesis"
homepage = "https://github.com/MacCracken/shabda"
documentation = "https://docs.rs/shabda"
readme = "README.md"
keywords = [
    "g2p",
    "phoneme",
    "text-to-speech",
    "pronunciation",
    "grapheme",
]
categories = [
    "text-processing",
    "multimedia::audio",
]
license = "GPL-3.0-only"
repository = "https://github.com/MacCracken/shabda"

[features]
default = ["std"]
full = [
    "std",
    "logging",
    "json",
    "varna",
]
json = [
    "dep:serde_json",
    "shabdakosh/json",
]
logging = ["dep:tracing-subscriber"]
std = [
    "serde/std",
    "svara/std",
    "thiserror/std",
    "tracing/std",
    "shabdakosh/std",
]
varna = [
    "dep:varna",
    "std",
    "varna/std",
]

[lib]
name = "shabda"
path = "src/lib.rs"

[[example]]
name = "basic_g2p"
path = "examples/basic_g2p.rs"

[[example]]
name = "custom_dictionary"
path = "examples/custom_dictionary.rs"

[[test]]
name = "integration"
path = "tests/integration.rs"

[[bench]]
name = "benchmarks"
path = "benches/benchmarks.rs"
harness = false

[dependencies.serde]
version = "1"
features = [
    "derive",
    "alloc",
]
default-features = false

[dependencies.serde_json]
version = "1"
features = ["alloc"]
optional = true
default-features = false

[dependencies.shabdakosh]
version = "1"
default-features = false

[dependencies.svara]
version = "1"
default-features = false

[dependencies.thiserror]
version = "2"
default-features = false

[dependencies.tracing]
version = "0.1"
default-features = false

[dependencies.tracing-subscriber]
version = "0.3"
features = [
    "env-filter",
    "fmt",
]
optional = true

[dependencies.varna]
version = "1"
optional = true
default-features = false

[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]

[dev-dependencies.serde_json]
version = "1"