5 releases (breaking)

0.13.0 Mar 17, 2024
0.12.0 Mar 11, 2024
0.11.0 Jun 17, 2023
0.10.0 Mar 22, 2023
0.9.0 Mar 19, 2023

#1473 in Asynchronous

Download history 1/week @ 2024-05-27 13/week @ 2024-06-10 73/week @ 2024-06-17 18/week @ 2024-07-01 33/week @ 2024-07-22 1/week @ 2024-07-29

227 downloads per month
Used in 2 crates

MIT/Apache

175KB
3.5K SLoC

SSIP client

ssip-client implements a Speech Dispatcher SSIP client library in pure rust.

See client::Client for the synchronous API and poll::QueuedClient for the asynchronous API.

Example

use ssip_client::{fifo, ClientName};
let mut client = fifo::Builder::new().build()?;
client
    .set_client_name(ClientName::new("joe", "hello"))?
    .check_client_name_set()?;
let msg_id = client.speak()?.send_line("hello")?.receive_message_id()?;
client.quit()?;

Dependencies

~8–22MB
~263K SLoC