This repository has been archived by the owner on Jan 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
plate.cabal
89 lines (87 loc) · 1.67 KB
/
plate.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
name: plate
version: 0.1.0
synopsis: An experimental attempt at principled schemas
homepage: https://github.com/plate/plate
author: Ian Grant Jeffries
maintainer: ian@housejeffries.com
license: MIT
license-file: ./misc/MIT-LICENSE.txt
build-type: Simple
cabal-version: >=1.10
library
hs-source-dirs:
src
default-language: Haskell2010
default-extensions:
DeriveFunctor
DeriveGeneric
FlexibleContexts
FlexibleInstances
GeneralizedNewtypeDeriving
NoImplicitPrelude
OverloadedStrings
ScopedTypeVariables
StrictData
TupleSections
ghc-options:
-Wall
exposed-modules:
Plate
Plate.Schema
Plate.Validation
Plate.Value
PlateExamples
other-modules:
Plate.Prelude
build-depends:
base
, aeson
, bytestring
, containers
, hashable
, microlens
, profunctors
, protolude
, QuickCheck
, scientific
, text
, unordered-containers
, vector
test-suite test
hs-source-dirs:
test
main-is: Test.hs
other-modules:
Test.ReadmeExamples
Test.Prelude
Test.SimplePlate
Test.Validation
default-language: Haskell2010
default-extensions:
DeriveFunctor
DeriveGeneric
FlexibleContexts
FlexibleInstances
GeneralizedNewtypeDeriving
NoImplicitPrelude
OverloadedStrings
ScopedTypeVariables
StrictData
TupleSections
type: exitcode-stdio-1.0
ghc-options:
-Wall
build-depends:
base
, aeson
, aeson-pretty
, bytestring
, plate
, protolude
, QuickCheck
, tasty
, tasty-hunit
, tasty-quickcheck
, text
, unordered-containers
, vector