Dynamically linked to librsync2 / librsync-dev
Signatures are stored in memory even though the whole file api is used. Temporary directories are utilized to hold values until they get initialized in memory.
let path = PathBuf::from("some/file/location");
let (signature, stats) = Signature::new(&path).unwrap;
Delta files are a Vec<u8>
representations of rsync delta files. A delta takes a file signature and some new
file to compute against
``` let path = PathBuf::from("some/file/location"); let (signature, stats) = Signature::new(&path).unwrap;
let somenewpath = PathBuf::from("the/file/changed/maybe"); let (delta, stats) = Delta::new(&mut signature, &somenewpath); ```
``` let path = PathBuf::from("some/file/location"); let (signature, stats) = Signature::new(&path).unwrap;
let somenewpath = PathBuf::from("the/file/changed/maybe"); let (delta, stats) = Delta::new(&mut signature, &somenewpath);
// will output the value of the new file as a Vec