accept-encoding 0.1.0

Determine the best encoding possible from an Accept-Encoding HTTP header.
Documentation
1
2
3
4
5
6
7
8
9
extern crate accept_encoding;
extern crate failure;

use failure::Error;

#[test]
fn should_work() -> Result<(), Error> {
  Ok(())
}