packages feed

huffman-1.0.2: huffman.cabal

Cabal-Version:   3.0
Name:		huffman
Version:	1.0.2
License-File:	LICENSE
License:	BSD-2-Clause
Author:		Maxime Henrion
Copyright:	2010, Maxime Henrion
Maintainer:	Maxime Henrion <mhenrion@gmail.com>
Bug-Reports:	http://bitbucket.org/mux/huffman/issues/
Category:	Data, Compression
Synopsis:	Pure Haskell implementation of the Huffman encoding algorithm
Description:
  A simple and pure Haskell implementation of the Huffman encoding
  algorithm.
  .
  The @huffman@ function provides the original O(n log n) algorithm
  implemented with a priority queue.  If the input symbols are sorted
  by probability, the O(n) @huffmanSorted@ function can be used instead.
Build-Type:	Simple
Tested-with:	GHC ==6.12

Source-Repository head
  Type:			mercurial
  Location:		http://bitbucket.org/mux/huffman/

Library
  Default-Language:     Haskell2010
  Build-Depends:	base >= 3 && < 5, containers, fingertree
  Exposed-Modules:	Data.Compression.Huffman
  GHC-Options:		-Wall -O2 -funbox-strict-fields