[package]
edition = "2021"
name = "speechmarkdown-rust"
version = "0.1.5"
authors = ["SpeechMarkdown Contributors"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-performance SpeechMarkdown parser with multi-language bindings"
readme = "README.md"
keywords = [
"speech",
"ssml",
"tts",
"voice",
"parser",
]
categories = [
"parser-implementations",
"text-processing",
]
license = "MIT"
repository = "https://github.com/speechmarkdown/speechmarkdown-rust"
[lib]
name = "speechmarkdown_rust"
crate-type = [
"rlib",
"cdylib",
"staticlib",
]
path = "src/lib.rs"
[[test]]
name = "break_specific_test"
path = "tests/break_specific_test.rs"
[[test]]
name = "debug_failures"
path = "tests/debug_failures.rs"
[[test]]
name = "diagnostic_test"
path = "tests/diagnostic_test.rs"
[[test]]
name = "ffi_test"
path = "tests/ffi_test.rs"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"
[[test]]
name = "remaining_test"
path = "tests/remaining_test.rs"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "1.0"
[dev-dependencies]
[profile.dev]
opt-level = 0
[profile.release]
opt-level = 3
lto = true
codegen-units = 1