Mirror of space-wizards/deltaq
Find a file
2021-02-03 14:33:37 -05:00
deltaq Fix BsPatch failing to flush/dispose of output stream 2021-02-03 14:33:37 -05:00
deltaq-tests Fix tests to use ToArray instead of GetBuffer 2021-02-03 14:33:37 -05:00
.gitattributes Initial commit to add default .gitIgnore and .gitAttribute files. 2014-10-14 22:35:38 -05:00
.gitignore Ignore lock files 2016-05-29 05:51:47 -05:00
deltaq.sln Remove key reference from solution 2017-09-16 16:43:28 -05:00
LICENSE.md Update LICENSE.md 2016-05-30 15:42:21 -05:00
README.md Update README.md 2016-05-29 11:54:06 -05:00

#deltaq

Fast and portable delta encoding library for .NET

deltaq is a .NET Core class library

Installing

  • Manual install: Download from the Releases
  • NuGet install: Follow instructions on the NuGet page or enter Install-Package deltaq in the Package Manager console.

Supported formats

Format Create patches Apply patches
bsdiff Yes Yes
vcdiff No No

Roadmap

  • Add support for applying VCDIFF patches. VCDIFF format is defined in RFC 3284 with several existing implementations. Jon Skeet's MiscUtil already has an implementation of the patch portion of VCDIFF, but much more work is needed to create a C# patch generator.
  • Add platform-specific libraries to make usage as simple as possible. There's also room to support memory-mapped files and similar significant optimizations.