svn 0.1.7

Async client for Subversion's svn:// (ra_svn) protocol.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod command;
mod decode;
mod drive;
mod report;
#[cfg(test)]
mod tests;

pub(crate) use command::encode_editor_command;
#[cfg(test)]
pub(crate) use command::send_editor_command;
pub(crate) use decode::parse_failure;
pub(crate) use drive::{EditorDriveStatus, drive_editor, drive_editor_async};
pub(crate) use report::send_report;