Skip to content

Bhanditz/go-brotli

 
 

Repository files navigation

Go bindings for the Brotli compression library

GoDoc Build Status

This is a fork of Mike Houston's https://github.com/kothar/brotli-go with the following changes:

  • Bumped to a more recent upstream (post-1.0.0)
  • Removed custom dictionary support (which was removed from upstream)

See https://github.com/google/brotli for the upstream C/C++ source, and the VERSION.md file to find out the currently vendored version.

Usage

Instead of including potentially-outdated examples in the README, please refer to the Examples tests on the following godoc pages:

Bindings

This is a very basic Cgo wrapper for the enc and dec directories from the Brotli sources.

A few minor changes have been made to get things working with Go:

  1. The default dictionary has been extracted to a separate 'common' package to allow linking the enc and dec cgo modules if you use both. Otherwise there are duplicate symbols, as described in the dictionary.h header files.

  2. The dictionary variable name for the dec package has been modified for the same reason, to avoid linker collisions.

Links

License

Brotli and these bindings are open-sourced under the MIT License - see the LICENSE file.

About

Go bindings for the Brotli compression library (fork of kothar/brotli-go)

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 96.4%
  • Objective-C 2.2%
  • Go 1.2%
  • Other 0.2%