Fix missing size_t on latest stable

This commit is contained in:
Tait Hoyem 2022-10-16 15:10:24 -06:00
parent 2239c2539a
commit bcf7025f14
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},