svn 0.1.8

Async Rust SVN client for Subversion svn://, svn+ssh://, and ra_svn workflows.
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;