You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Laurent Pelecq 40095d578c
Fix readme for first release
2 years ago
examples add notifications 2 years ago
src disable test on standard socket if XDG not available 2 years ago
tests add notifications 2 years ago
.gitlab-ci.yml disable test on standard socket if XDG not available 2 years ago
Cargo.toml upgrade dependencies and fix lint errors 2 years ago
LICENSE-APACHE add readme and license 2 years ago
LICENSE-MIT add readme and license 2 years ago
README.md Fix readme for first release 2 years ago

README.md

Rust SSIP Client

build status license

Speech Dispatcher SSIP client library in pure rust.

  • Support notifications.
  • Message history is not yet supported.

Example

use ssip_client::{new_default_fifo_client, ClientName};
let mut client = new_default_fifo_client(&ClientName::new("joe", "hello"), None)?;
let msg_id = client.say_line("hello")?;
client.quit()?;

License

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.