forked from typeable/schematic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
schematic.cabal
120 lines (118 loc) · 4.54 KB
/
schematic.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
name: schematic
version: 0.6.0.0
synopsis: JSON-biased spec and validation tool
description: JSON-biased spec and validation tool. Makes possible to have a schema as a haskell type and derive json instances, validation actions, JSON generation for property-test generically. Built-in lens support.
license: BSD3
license-file: LICENSE
author: Denis Redozubov
maintainer: [email protected]
homepage: http://github.com/typeable/schematic
Bug-reports: http://github.com/typeable/schematic/issues/
category: Data
build-type: Simple
extra-source-files: ChangeLog.md
cabal-version: >=1.10
library
exposed-modules: Data.Schematic
, Data.Schematic.DSL
, Data.Schematic.Generator
, Data.Schematic.Generator.Regex
, Data.Schematic.Instances
, Data.Schematic.JsonSchema
, Data.Schematic.Helpers
, Data.Schematic.Lens
, Data.Schematic.Migration
, Data.Schematic.Path
, Data.Schematic.Schema
, Data.Schematic.Validation
, Data.Schematic.Verifier
, Data.Schematic.Verifier.Array
, Data.Schematic.Verifier.Common
, Data.Schematic.Verifier.Number
, Data.Schematic.Verifier.Text
ghc-options: -Wall
default-extensions: ConstraintKinds
, DataKinds
, DefaultSignatures
, DeriveFunctor
, DeriveFoldable
, DeriveTraversable
, DeriveGeneric
, DeriveDataTypeable
, FlexibleContexts
, FlexibleInstances
, FunctionalDependencies
, GADTs
, KindSignatures
, InstanceSigs
, LambdaCase
, MultiParamTypeClasses
, OverloadedLists
, OverloadedStrings
, PolyKinds
, QuasiQuotes
, PartialTypeSignatures
, RankNTypes
, RecordWildCards
, StandaloneDeriving
, ScopedTypeVariables
, TemplateHaskell
, TypeApplications
, TypeFamilies
, TypeFamilyDependencies
, TypeInType
, TypeOperators
, TypeSynonymInstances
, UndecidableInstances
build-depends: base >=4.11 && <4.13
, bytestring
, aeson >= 1
, containers
, hjsonschema
, mtl
, profunctors
, regex-tdfa
, regex-tdfa-text
, scientific
, singletons >= 2.4
, smallcheck
, tagged
, template-haskell
, text
, union
, unordered-containers
, validationt >= 0.2.1.0
, vector
, vinyl
hs-source-dirs: src
default-language: Haskell2010
test-suite spec
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
default-language: Haskell2010
build-depends: HUnit
, aeson >= 1
, base >=4.11 && <4.13
, bytestring
, containers
, hjsonschema
, hspec >= 2.2.0
, hspec-core
, hspec-discover
, hspec-smallcheck
, lens
, regex-tdfa
, regex-tdfa-text
, schematic
, smallcheck
, singletons
, tagged
, text
, unordered-containers
, validationt >= 0.2.1.0
, vinyl
other-modules: SchemaSpec
, HelpersSpec
, LensSpec
, JsonSchemaSpec