asterisk-rs-ari 0.7.1

Async Rust client for the Asterisk REST Interface (ARI)
Documentation
//! Async Rust client for the Asterisk REST Interface (ARI).
//!
//! ARI provides full call control through a REST API combined with
//! a WebSocket event stream for Stasis applications.

pub mod client;
pub mod config;
pub mod error;
pub mod event;
pub mod media;
pub mod pending;
pub mod resources;
pub mod server;
pub(crate) mod transport;
pub(crate) mod util;
pub mod websocket;
pub(crate) mod ws_proto;
pub(crate) mod ws_transport;

pub use client::AriClient;
pub use config::{AriConfig, TransportMode};
pub use error::AriError;
pub use event::{AriEvent, AriMessage};
pub use pending::{PendingBridge, PendingChannel, PendingPlayback};