packages feed

derive-trie-0.2: derive-trie.cabal

Name:          derive-trie
Version:       0.2
Stability:     Provisional
Synopsis:      Automatic derivation of Trie implementations.
Description:   Automatic derivation of Trie implementations from user
               defined key types with Template Haskell. Uses KeyMap class
               as interface for tries.
License:       BSD3
License-file:  LICENSE
Author:        Peter Findeisen, Frank Huch, Sebastian Fischer, Andreas Baldeau
Maintainer:    Andreas Baldeau <andreas@baldeau.net>
Homepage:      http://github.com/baldo/derive-trie
Bug-Reports:   http://github.com/baldo/derive-trie/issues
Category:      Data
Build-Type:    Simple
Tested-With:   GHC == 7.0.3
Cabal-Version: >= 1.10

Extra-Source-Files:
    Setup.hs
    README
    examples/TreeTrie.hs

Source-Repository head
    Type:     git
    Location: git://github.com/baldo/derive-trie.git

Library
    Default-Language:
        Haskell2010

    Build-Depends:
        base             >= 4.3 && < 4.5,
        array            == 0.3.*,
        containers       >= 0.3 && < 0.5,
        template-haskell >= 2.5 && < 2.7

    Ghc-Options:
        -Wall

    Hs-Source-Dirs:
        src

    Exposed-modules:
        Data.Derive.Trie,
        Data.KeyMap