speech-dispatcher-rs/speech-dispatcher/Cargo.toml

30 lines
743 B
TOML
Raw Permalink Normal View History

2019-12-22 18:12:27 +00:00
[package]
name = "speech-dispatcher"
version = "0.16.0"
2019-12-22 18:12:27 +00:00
authors = ["Nolan Darilek <nolan@thewordnerd.info>"]
repository = "https://dev.thewordnerd.info/nolan/speech-dispatcher-rs"
2019-12-22 18:12:27 +00:00
description = "Rusty interface to the speech-dispatcher speech synthesis library"
2022-02-05 15:15:15 +00:00
license = "LGPL-2.1 OR MIT OR Apache-2.0"
2022-01-27 16:06:41 +00:00
edition = "2021"
2019-12-22 18:12:27 +00:00
2022-03-10 18:54:53 +00:00
[features]
0_11 = ["0_10"]
0_10 = []
0_9 = []
default = ["0_11"]
2022-03-10 18:54:53 +00:00
2019-12-22 18:12:27 +00:00
[dependencies]
lazy_static = "1"
2022-02-05 15:15:15 +00:00
speech-dispatcher-sys = { version = "0.7", path = "../speech-dispatcher-sys" }
2022-10-16 21:10:24 +00:00
libc = "0.2.125"
[package.metadata.docs.rs]
no-default-features = true
features = ["0_9"]
[package.metadata.release]
tag-prefix = ""
publish = false
push = false
pre-release-hook = ["git-cliff", "-o", "CHANGELOG.md", "--tag", "{{version}}"]