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
227 downloads per month
Used in 2 crates
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