-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomparaptor.cabal
More file actions
71 lines (61 loc) · 2.36 KB
/
comparaptor.cabal
File metadata and controls
71 lines (61 loc) · 2.36 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
Name: comparaptor
Version: 0.0.0
Synopsis: Safe comparsions
Description: Safe comparsions
License: MIT
License-file: LICENSE
Author: Fedor Gogolev <knsd@knsd.net>
Maintainer: Fedor Gogolev <knsd@knsd.net>
Homepage: https://github.com/lambda-llama/comparaptor
Bug-reports: https://github.com/lambda-llama/comparaptor
Category: System
Stability: Alpha
Build-type: Simple
Cabal-version: >= 1.12
Tested-with: GHC == 7.6.*
Library
Hs-source-dirs: src
Ghc-options: -Wall -fno-warn-orphans
Default-language: Haskell2010
Build-depends:
base == 4.6.* || == 4.5.*
, ghc-prim == 0.3.* || == 0.2.*
, integer-gmp == 0.5.* || == 0.4.*
, bytestring == 0.10.* || == 0.9.*
Exposed-modules: Data.Comparaptor
C-sources: cbits/comparaptor.c
Include-dirs: cbits
Benchmark comparaptor-benchmark
Main-is: Benchmark.hs
Hs-source-dirs: src, benchmarks
Ghc-options: -Wall -fno-warn-orphans -O2
Default-language: Haskell2010
Type: exitcode-stdio-1.0
C-sources: cbits/comparaptor.c
Include-dirs: cbits
Build-depends:
base == 4.6.* || == 4.5.*
, ghc-prim == 0.3.* || == 0.2.*
, integer-gmp == 0.5.* || == 0.4.*
, bytestring == 0.10.* || == 0.9.*
, criterion == 0.6.*
Test-suite comparaptor-tests
Main-is: Tests.hs
Hs-source-dirs: src, tests
Ghc-options: -Wall -fno-warn-orphans
Default-language: Haskell2010
Type: exitcode-stdio-1.0
C-sources: cbits/comparaptor.c
Include-dirs: cbits
Build-depends:
base == 4.6.* || == 4.5.*
, ghc-prim == 0.3.* || == 0.2.*
, integer-gmp == 0.5.* || == 0.4.*
, bytestring == 0.10.* || == 0.9.*
, comparaptor
, test-framework == 0.8.*
, test-framework-quickcheck2 == 0.3.*
, QuickCheck == 2.5.*
Source-repository head
Type: git
Location: https://github.com/lambda-llama/comparaptor