-
Notifications
You must be signed in to change notification settings - Fork 2
/
conduit-aeson.cabal
92 lines (84 loc) · 2.85 KB
/
conduit-aeson.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
name: conduit-aeson
version: 0.1.1.0
synopsis: Short description
description: Please see the README on GitHub at <https://github.com/lehins/conduit-aeson#readme>
homepage: https://github.com/lehins/conduit-aeson
license: BSD3
license-file: LICENSE
author: Alexey Kuleshevich
maintainer: [email protected]
copyright: 2021-2022 Alexey Kuleshevich
category: Algorithms
build-type: Simple
extra-doc-files: README.md
, CHANGELOG.md
cabal-version: 1.18
tested-with: GHC == 8.4.4
, GHC == 8.6.5
, GHC == 8.8.4
, GHC == 8.10.7
, GHC == 9.0.2
, GHC == 9.2.8
, GHC == 9.4.8
, GHC == 9.6.5
, GHC == 9.8.2
library
hs-source-dirs: src
exposed-modules: Data.Conduit.Aeson
other-modules:
build-depends: aeson >= 1.0
, attoparsec
, base >= 4.9 && < 5
, bytestring
, conduit
, conduit-extra
, text
if impl(ghc >= 8.2)
build-depends: attoparsec-aeson
default-language: Haskell2010
ghc-options: -Wall
-Wincomplete-record-updates
-Wincomplete-uni-patterns
-Wredundant-constraints
test-suite doctests
type: exitcode-stdio-1.0
hs-source-dirs: tests
main-is: doctests.hs
build-depends: base
if impl(ghc >= 8.2)
build-depends: attoparsec
, bytestring
, conduit
, conduit-aeson
, doctest
default-language: Haskell2010
ghc-options: -Wall
-Wincomplete-record-updates
-Wincomplete-uni-patterns
-Wredundant-constraints
-threaded
test-suite tests
type: exitcode-stdio-1.0
hs-source-dirs: tests
main-is: Main.hs
other-modules: Data.Conduit.AesonSpec
build-depends: base
, aeson
, conduit
, containers
, conduit-aeson
, hspec
, QuickCheck
, scientific
, text
default-language: Haskell2010
ghc-options: -Wall
-Wincomplete-record-updates
-Wincomplete-uni-patterns
-Wredundant-constraints
-fno-warn-orphans
-threaded
-with-rtsopts=-N2
source-repository head
type: git
location: https://github.com/lehins/conduit-aeson