-
Notifications
You must be signed in to change notification settings - Fork 0
/
fields-and-cases.cabal
78 lines (71 loc) · 1.82 KB
/
fields-and-cases.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
cabal-version: 2.4
name: fields-and-cases
version: 0.2.0.0
synopsis: Codegen Haskell types to other languages
description:
This package provides a way to generate code for other languages from Haskell types.
It's target language agnostic and based on type classes.
bug-reports: https://github.com/thought2/fields-and-cases/issues
license: BSD-3-Clause
author: Michael Bock
maintainer: [email protected]
category: codegen
extra-source-files: CHANGELOG.md
source-repository head
type: git
location: https://github.com/thought2/fields-and-cases
common common-opts
default-language: Haskell2010
default-extensions:
AllowAmbiguousTypes
ConstraintKinds
DataKinds
DefaultSignatures
DeriveAnyClass
DeriveGeneric
DerivingVia
DuplicateRecordFields
FlexibleContexts
FlexibleInstances
FunctionalDependencies
GADTs
GeneralizedNewtypeDeriving
LambdaCase
MultiParamTypeClasses
NamedFieldPuns
NoImplicitPrelude
OverloadedStrings
PolyKinds
RankNTypes
ScopedTypeVariables
TypeApplications
TypeFamilies
TypeFamilyDependencies
TypeOperators
UndecidableInstances
UndecidableSuperClasses
library
import: common-opts
exposed-modules: FieldsAndCases
build-depends:
, base >=4.17.2.0 && <4.20
, relude >=1.2.1 && <1.3
, string-conversions >=0.4.0 && <0.5
hs-source-dirs: lib
test-suite test
default-language: Haskell2010
type: exitcode-stdio-1.0
other-modules:
Readme
Spec
hs-source-dirs: tests
main-is: test.hs
build-depends:
, base
, fields-and-cases
, process
, regex-compat
, relude
, string-conversions
, tasty
, tasty-hunit