-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.yaml
56 lines (50 loc) · 1.29 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
name: stripped-aeson
version: 1.0.0
github: "blmage/stripped-aeson"
license: MIT
author: "Benoît Leulliette"
maintainer: "[email protected]"
copyright: "2020 Benoît Leulliette"
extra-source-files:
- README.md
category: JSON, Generics
synopsis: |
Type-driven Aeson instance deriving with the ability to strip fields from the output.
description: |
A layer around the [deriving-aeson](https://hackage.haskell.org/package/deriving-aeson)
package, with the ability to strip one or more fields from the JSON output, and recover
them when decoding using some specific defaults.
dependencies:
- aeson
- base >= 4.7 && < 5
- containers
- deriving-aeson
- first-class-families >= 0.6.0.0
- generic-data-surgery >= 0.2.1.0
- symbols
- text
library:
source-dirs: src
tests:
stripped-aeson-test:
main: Doctest.hs
source-dirs: test
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- containers
- doctest
- stripped-aeson
- text
benchmarks:
stripped-aeson-benchmark:
main: Main.hs
source-dirs: bench
dependencies:
- aeson
- containers
- criterion
- stripped-aeson
- text