-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.yaml
81 lines (73 loc) · 1.64 KB
/
package.yaml
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
name: tagged-aeson
version: '1.0.0'
synopsis: Have many Aeson instances for the same type!
description: |
This package provides alternative 'FromJSON' and 'ToJSON' classes
that come equipped with a tag. This lets you have several different
Aeson instances for the same type.
category: Text, Web, JSON
author: Artyom Kazak
maintainer: Monadfix <[email protected]>
license: BSD3
homepage: https://github.com/monadfix/tagged-aeson
bug-reports: https://github.com/monadfix/tagged-aeson/issues
git: git://github.com/monadfix/tagged-aeson.git
extra-source-files:
- CHANGELOG.md
tested-with: ghc ==8.6.4 ghc ==8.4.4
library:
source-dirs: lib
exposed-modules:
- Data.Aeson.Tagged
- Data.Aeson.Tagged.TH
- Data.Aeson.Tagged.Aeson
- Data.Aeson.Tagged.Wrapped
- Data.Aeson.Tagged.Classes
- Data.Aeson.Tagged.Explicit
dependencies:
- dlist
- scientific
- uniplate
- type-errors
tests:
tests:
main: Spec.hs
source-dirs: test
dependencies:
- hspec
- tagged-aeson
- hedgehog
- hw-hspec-hedgehog
- constraints
dependencies:
- base >=4.8 && <5
- aeson
- base-prelude
- containers
- text
- th-lift
- unordered-containers
- vector
- hashable
- deepseq
- template-haskell >=2.12 && <2.15
default-extensions:
- ScopedTypeVariables
- TypeApplications
- RankNTypes
- KindSignatures
- PolyKinds
- LambdaCase
- ViewPatterns
- DefaultSignatures
- DerivingStrategies
- FlexibleInstances
- PatternSynonyms
- MultiParamTypeClasses
- FunctionalDependencies
- DeriveLift
- StandaloneDeriving
- TypeOperators
ghc-options:
- -Wall
- -Wno-unused-do-bind