summaryrefslogtreecommitdiff
path: root/yaml.cabal
blob: 658e447b1c76d95928b38f8e6a632de52b50036a (plain)
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
cabal-version: 1.12

-- This file has been generated from package.yaml by hpack version 0.35.1.
--
-- see: https://github.com/sol/hpack

name:           yaml
version:        0.11.11.2
x-revision: 2
synopsis:       Support for parsing and rendering YAML documents.
description:    README and API documentation are available at <https://www.stackage.org/package/yaml>
category:       Data
stability:      stable
homepage:       https://github.com/snoyberg/yaml#readme
bug-reports:    https://github.com/snoyberg/yaml/issues
author:         Michael Snoyman <michael@snoyman.com>, Anton Ageev <antage@gmail.com>,Kirill Simonov
maintainer:     Michael Snoyman <michael@snoyman.com>
license:        BSD3
license-file:   LICENSE
build-type:     Simple
extra-source-files:
    test/largest-string.yaml
    test/json.yaml
    test/resources/foo.yaml
    test/resources/bar.yaml
    test/resources/baz.yaml
    test/resources/accent/foo.yaml
    test/resources/loop/foo.yaml
    test/resources/loop/bar.yaml
    test/resources/empty.yaml
    test/resources/empty2.yaml
    README.md
    ChangeLog.md

source-repository head
  type: git
  location: https://github.com/snoyberg/yaml

flag no-examples
  description: don't build the examples
  manual: False
  default: True

flag no-exe
  description: don't install the yaml2json or json2yaml executables
  manual: False
  default: True

library
  exposed-modules:
      Data.Yaml
      Data.Yaml.Aeson
      Data.Yaml.Builder
      Data.Yaml.Config
      Data.Yaml.Include
      Data.Yaml.Internal
      Data.Yaml.Parser
      Data.Yaml.Pretty
      Data.Yaml.TH
  other-modules:
      Paths_yaml
  hs-source-dirs:
      src
  other-extensions:
      LambdaCase
  ghc-options: -Wall -Wcompat
  build-depends:
      aeson >=0.11
    , attoparsec >=0.11.3.0
    , base >=4.9.1 && <5
    , bytestring >=0.9.1.4
    , conduit >=1.2.8 && <1.4
    , containers
    , directory
    , filepath
    , libyaml ==0.1.*
    , mtl
    , resourcet >=0.3 && <1.4
    , scientific >=0.3
    , template-haskell
    , text
    , transformers >=0.1
    , unordered-containers
    , vector
  default-language: Haskell2010

executable examples
  main-is: Main.hs
  other-modules:
      Config
      Simple
      Paths_yaml
  hs-source-dirs:
      examples
  ghc-options: -Wall -Wcompat
  build-depends:
      aeson >=0.11
    , attoparsec >=0.11.3.0
    , base >=4.9.1 && <5
    , bytestring >=0.9.1.4
    , conduit >=1.2.8 && <1.4
    , containers
    , directory
    , filepath
    , libyaml ==0.1.*
    , mtl
    , resourcet >=0.3 && <1.4
    , scientific >=0.3
    , template-haskell
    , text
    , transformers >=0.1
    , unordered-containers
    , vector
  default-language: Haskell2010
  if flag(no-examples)
    buildable: False
  else
    build-depends:
        raw-strings-qq
      , yaml

executable json2yaml
  main-is: json2yaml.hs
  other-modules:
      Common
      Paths_yaml
  hs-source-dirs:
      exe
  ghc-options: -Wall -Wcompat
  build-depends:
      aeson >=0.11
    , attoparsec >=0.11.3.0
    , base >=4.9.1 && <5
    , bytestring >=0.9.1.4
    , conduit >=1.2.8 && <1.4
    , containers
    , directory
    , filepath
    , libyaml ==0.1.*
    , mtl
    , optparse-applicative
    , resourcet >=0.3 && <1.4
    , scientific >=0.3
    , template-haskell
    , text
    , transformers >=0.1
    , unordered-containers
    , vector
    , yaml
  default-language: Haskell2010
  if flag(no-exe)
    buildable: False

executable yaml2json
  main-is: yaml2json.hs
  other-modules:
      Common
      Paths_yaml
  hs-source-dirs:
      exe
  other-extensions:
      CPP
      LambdaCase
      NamedFieldPuns
  ghc-options: -Wall -Wcompat
  build-depends:
      aeson >=0.11
    , attoparsec >=0.11.3.0
    , base >=4.9.1 && <5
    , bytestring >=0.9.1.4
    , conduit >=1.2.8 && <1.4
    , containers
    , directory
    , filepath
    , libyaml ==0.1.*
    , mtl
    , optparse-applicative
    , resourcet >=0.3 && <1.4
    , scientific >=0.3
    , template-haskell
    , text
    , transformers >=0.1
    , unordered-containers
    , vector
    , yaml
  default-language: Haskell2010
  if flag(no-exe)
    buildable: False

test-suite spec
  type: exitcode-stdio-1.0
  main-is: Spec.hs
  other-modules:
      Data.Yaml.IncludeSpec
      Data.Yaml.THSpec
      Data.YamlSpec
      Paths_yaml
  hs-source-dirs:
      test
  ghc-options: -Wall -Wcompat -with-rtsopts=-K1K
  cpp-options: -DTEST
  build-depends:
      HUnit
    , aeson >=0.11
    , attoparsec >=0.11.3.0
    , base >=4.9.1 && <5
    , base-compat
    , bytestring >=0.9.1.4
    , conduit >=1.2.8 && <1.4
    , containers
    , directory
    , filepath
    , hspec >=1.3
    , libyaml ==0.1.*
    , mockery
    , mtl
    , raw-strings-qq
    , resourcet >=0.3 && <1.4
    , scientific >=0.3
    , template-haskell
    , temporary
    , text
    , transformers >=0.1
    , unordered-containers
    , vector
    , yaml
  default-language: Haskell2010