Compare commits

...

2 Commits

3 changed files with 11 additions and 10 deletions

View File

@ -11,13 +11,13 @@ before_script:
test:
stage: test
script:
- cargo test --no-default-features
- cargo test
publish:
stage: publish
script:
- cargo login $CARGO_TOKEN
- cargo publish --manifest-path speech-dispatcher-sys/Cargo.toml || true
- cargo publish --no-default-features --manifest-path speech-dispatcher/Cargo.toml
- cargo publish --manifest-path speech-dispatcher/Cargo.toml
only:
- tags

View File

@ -1,6 +1,6 @@
[package]
name = "speech-dispatcher"
version = "0.13.1"
version = "0.14.0"
authors = ["Nolan Darilek <nolan@thewordnerd.info>"]
repository = "https://gitlab.com/ndarilek/speech-dispatcher-rs"
description = "Rusty interface to the speech-dispatcher speech synthesis library"
@ -8,8 +8,9 @@ license = "LGPL-2.1 OR MIT OR Apache-2.0"
edition = "2021"
[features]
0_10_2 = ["0_10"]
0_10 = []
default = ["0_10"]
default = ["0_10_2"]
[dependencies]
lazy_static = "1"

View File

@ -413,25 +413,25 @@ impl Connection {
}
pub fn set_voice_type(&self, voice_type: VoiceType) -> Result<(), Error> {
#[cfg(feature = "0_10")]
#[cfg(all(feature = "0_10", not(feature = "0_10_2")))]
let v = unsafe { spd_set_voice_type(*self.0, voice_type as i32) };
#[cfg(not(feature = "0_10"))]
#[cfg(any(feature = "0_10_2", not(feature = "0_10")))]
let v = unsafe { spd_set_voice_type(*self.0, voice_type as u32) };
c_int_to_result(v)
}
pub fn set_voice_type_all(&self, voice_type: VoiceType) -> Result<(), Error> {
#[cfg(feature = "0_10")]
#[cfg(all(feature = "0_10", not(feature = "0_10_2")))]
let v = unsafe { spd_set_voice_type_all(*self.0, voice_type as i32) };
#[cfg(not(feature = "0_10"))]
#[cfg(any(feature = "0_10_2", not(feature = "0_10")))]
let v = unsafe { spd_set_voice_type_all(*self.0, voice_type as u32) };
c_int_to_result(v)
}
pub fn set_voice_type_uid(&self, voice_type: VoiceType, target_uid: u32) -> Result<(), Error> {
#[cfg(feature = "0_10")]
#[cfg(all(feature = "0_10", not(feature = "0_10_2")))]
let v = unsafe { spd_set_voice_type_uid(*self.0, voice_type as i32, target_uid) };
#[cfg(not(feature = "0_10"))]
#[cfg(any(feature = "0_10_2", not(feature = "0_10")))]
let v = unsafe { spd_set_voice_type_uid(*self.0, voice_type as u32, target_uid) };
c_int_to_result(v)
}