sproto 0.1.0

Rust client for the Synology Drive sync protocol
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![doc = include_str!("../README.md")]

// pstream must come first so the pmap! macro is available to other modules.
#[macro_use]
pub(crate) mod pstream;

pub mod actions;
pub(crate) mod channel;
pub mod client;
pub(crate) mod error;
pub(crate) mod frame;
pub(crate) mod pool;

pub use channel::TlsMode;
pub use client::Client;
pub use error::{Error, Result};