-
Notifications
You must be signed in to change notification settings - Fork 0
/
type-spec.cabal
101 lines (98 loc) · 3.64 KB
/
type-spec.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
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
name: type-spec
version: 0.4.0.0
synopsis: Type Level Specification by Example
description: Please see README.md
homepage: https://github.com/sheyll/type-spec#readme
license: BSD3
license-file: LICENSE
author: Sven Heyll
maintainer: [email protected]
copyright: 2016-2019 Sven Heyll
category: Testing
build-type: Simple
extra-source-files: examples/Main.hs
, README.md
, stack.yaml
, .travis.yml
cabal-version: >=1.10
library
hs-source-dirs: src
exposed-modules: Test.TypeSpec
, Test.TypeSpecCrazy
, Test.TypeSpec.Core
, Test.TypeSpec.Group
, Test.TypeSpec.Label
, Test.TypeSpec.ShouldBe
, Test.TypeSpec.Internal.Apply
, Test.TypeSpec.Internal.Either
, Test.TypeSpec.Internal.Equality
, Test.TypeSpec.Internal.Result
build-depends: base >= 4.9 && < 5
, pretty >= 1.1.3 && < 1.2
default-language: Haskell2010
default-extensions: ConstraintKinds
, CPP
, DataKinds
, DefaultSignatures
, DeriveDataTypeable
, DeriveFunctor
, DeriveGeneric
, FlexibleInstances
, FlexibleContexts
, FunctionalDependencies
, GADTs
, GeneralizedNewtypeDeriving
, KindSignatures
, MultiParamTypeClasses
, OverloadedStrings
, PolyKinds
, QuasiQuotes
, RecordWildCards
, RankNTypes
, ScopedTypeVariables
, StandaloneDeriving
, TemplateHaskell
, TupleSections
, TypeFamilies
, TypeInType
, TypeOperators
, TypeSynonymInstances
, UndecidableInstances
ghc-options: -Wall
test-suite examples
type: exitcode-stdio-1.0
ghc-options: -Wall
hs-source-dirs: examples
main-is: Main.hs
build-depends: base >= 4.9 && < 5
, type-spec
default-language: Haskell2010
default-extensions: ConstraintKinds
, CPP
, DataKinds
, DefaultSignatures
, DeriveDataTypeable
, DeriveFunctor
, DeriveGeneric
, FlexibleInstances
, FlexibleContexts
, FunctionalDependencies
, GADTs
, GeneralizedNewtypeDeriving
, KindSignatures
, MultiParamTypeClasses
, OverloadedStrings
, QuasiQuotes
, RecordWildCards
, RankNTypes
, ScopedTypeVariables
, StandaloneDeriving
, TemplateHaskell
, TupleSections
, TypeFamilies
, TypeInType
, TypeOperators
, TypeSynonymInstances
source-repository head
type: git
location: https://github.com/sheyll/type-spec