Merge branch 'master' into 'master'

Fix missing size_t on latest stable

See merge request ndarilek/speech-dispatcher-rs!7
This commit is contained in:
Nolan Darilek 2022-10-19 14:40:39 +00:00
commit 1ba40e898b
2 changed files with 3 additions and 1 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "speech-dispatcher"
version = "0.15.0"
version = "0.15.1"
authors = ["Nolan Darilek <nolan@thewordnerd.info>"]
repository = "https://gitlab.com/ndarilek/speech-dispatcher-rs"
description = "Rusty interface to the speech-dispatcher speech synthesis library"
@ -15,6 +15,7 @@ default = ["0_11"]
[dependencies]
lazy_static = "1"
speech-dispatcher-sys = { version = "0.7", path = "../speech-dispatcher-sys" }
libc = "0.2.125"
[package.metadata.docs.rs]
no-default-features = true

View File

@ -1,5 +1,6 @@
#![allow(non_upper_case_globals)]
use libc::size_t;
use std::{
collections::HashMap,
ffi::{CStr, CString},