-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhedgehog-gen.cabal
44 lines (38 loc) · 1.57 KB
/
hedgehog-gen.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
cabal-version: 2.4
name: hedgehog-gen
version: 0.2.0.0
description: Customizable Gen for ADT using Generics with the abilites to do type-based and field-based overrides of Gen.
homepage: https://github.com/byteally/hedgehog-gen
bug-reports: https://github.com/byteally/hedgehog-gen/issues
license: BSD-3-Clause
license-file: LICENSE
author: Magesh
maintainer: magesh85@gmail.com
copyright: © 2020 ByteAlly
category: Testing
extra-source-files: CHANGELOG.md, README.md
library
exposed-modules: Hedgehog.Gen.Generic
-- other-modules:
build-depends: base >= 4.9 && < 5
, hedgehog >= 1.0 && < 1.2
, bytestring >= 0.11 && < 0.12
, text >= 1.1 && < 2
, typerep-map >= 0.3.2 && < 0.6
, containers >= 0.6.2.1 && < 0.7
, vector >= 0.12.1.2 && < 0.14
, unordered-containers >= 0.2.10.0 && < 0.3
hs-source-dirs: src
ghc-options: -Wall
default-language: Haskell2010
test-suite hedgehog-gen-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
-- other-modules:
build-depends: base
, hedgehog-gen
, hedgehog > 1.0 && < 1.2
, text
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010