-
Notifications
You must be signed in to change notification settings - Fork 26
/
diskhash.cabal
46 lines (43 loc) · 1.17 KB
/
diskhash.cabal
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
42
43
44
45
46
name: diskhash
version: 0.0.4.2
synopsis: Disk-based hash table
description: Disk-based hash table
category: Data
author: Luis Pedro Coelho
maintainer: Luis Pedro Coelho
license: MIT
license-file: COPYING
cabal-version: >= 1.10
build-type: Simple
bug-reports: https://github.com/luispedro/diskhash/issues
extra-source-files: README.md ChangeLog src/diskhash.h src/primes.h src/rtable.h
library
default-language: Haskell2010
exposed-modules: Data.DiskHash
hs-source-dirs: haskell/
C-sources: haskell/Data/diskhash2.c src/diskhash.c
Include-dirs: src/
ghc-options: -Wall
build-depends:
base > 4.8 && < 5,
bytestring
Test-Suite diskhashtest
default-language: Haskell2010
type: exitcode-stdio-1.0
main-is: Data/DiskHash/Tests.hs
other-modules: Data.DiskHash
ghc-options: -Wall
hs-source-dirs: haskell/
include-dirs: src/
build-depends:
base > 4.8 && < 5,
bytestring,
directory,
diskhash,
tasty,
tasty-quickcheck,
tasty-th,
tasty-hunit
source-repository head
type: git
location: https://github.com/luispedro/diskhash