Fix missing size_t on latest stable

master
Tait Hoyem 2 years ago
parent 2239c2539a
commit bcf7025f14

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

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

Loading…
Cancel
Save