File: data-hash.cabal

package info (click to toggle)
haskell-data-hash 0.2.0.1-10
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 84 kB
  • sloc: haskell: 321; makefile: 3
file content (41 lines) | stat: -rw-r--r-- 1,135 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name:               data-hash
version:            0.2.0.1
description:
                    Combinators for building fast hashing functions. Includes
                    hashing functions for all basic Haskell98 types.

synopsis:           Combinators for building fast hashing functions.

category:           Data
license:            BSD3
license-file:       LICENSE
maintainer:         jcpetruzza@gmail.com

cabal-version:      >= 1.8
build-type:         Simple
tested-with:        GHC==6.10

extra-source-files: AUTHORS

source-repository   head
  type:             darcs
  location:         http://hub.darcs.net/jcpetruzza/data-hash

Library
  build-depends:    base >= 3 && <= 5, array, containers
  ghc-options:      -Wall -O2
  hs-source-dirs:   src

  exposed-modules:  Data.Hash, Data.Hash.Rolling
  other-modules:    Data.Hash.Base, Data.Hash.Instances

  extensions:       CPP


test-suite Main
  type:            exitcode-stdio-1.0
  x-uses-tf:       true
  build-depends:   base, QuickCheck, test-framework, test-framework-quickcheck2, data-hash
  ghc-options:     -Wall
  hs-source-dirs:  tests
  main-is:         Main.hs