leap_client_rs 0.1.0

Rust client library for the Leap Edge socket service
Documentation
#![warn(clippy::pedantic)]
#![allow(clippy::module_name_repetitions, clippy::unused_self)]

pub mod errors;
pub(crate) mod heartbeat;
pub mod leap;
pub(crate) mod manager;
pub(crate) mod messenger;
pub(crate) mod runner;
pub(crate) mod shard;

pub use leap::{LeapEdge, LeapOptions};