Crates.io | ssip-client |
lib.rs | ssip-client |
version | |
source | src |
created_at | 2022-03-12 19:38:14.415679+00 |
updated_at | 2024-12-21 17:28:20.829778+00 |
description | Client API for Speech Dispatcher |
homepage | |
repository | https://gitlab.com/lp-accessibility/ssip-client |
max_upload_size | |
id | 548889 |
Cargo.toml error: | TOML parse error at line 18, column 1 | 18 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
Speech Dispatcher SSIP client library in pure rust.
The API is synchronous by default.
A non-blocking API can be used with a low-level polling mechanism based on poll
, or
with mio.
The crate is considered as feature complete. It is in maintenance mode. For a real async API, see ssip-client-async which is a fork of this crate.
To use the synchronous API or an asynchronous API compatible with low-level crates based on poll
, use:
[dependencies]
ssip-client = "0.10"
For the asynchronous API, use:
[dependencies]
ssip-client = { version = "0.10", features = ["async-mio"] }
use ssip_client::{FifoBuilder, 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()?;
See other examples in the repository.
This software is distributed under the terms of both the MIT license and the Apache License (Version 2.0).
See LICENSE-APACHE and LICENSE-MIT for details.