1#![deny(missing_docs)] 2#![forbid(unsafe_code)] 3#![cfg_attr(all(doc, CHANNEL_NIGHTLY), feature(doc_auto_cfg))] 4//! Sync protocol implementation types and traits. 5mod auto_merge; 6mod error; 7mod remote; 8 9pub use error::Error; 10 11pub use auto_merge::*; 12pub use remote::*;