-
Notifications
You must be signed in to change notification settings - Fork 2
/
unjson.cabal
89 lines (85 loc) · 3.21 KB
/
unjson.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
cabal-version: 1.18
name: unjson
version: 0.15.4
synopsis: Bidirectional JSON parsing and generation.
description: Bidirectional JSON parsing and generation
with automatic documentation support.
homepage: https://github.com/scrive/unjson
license: BSD3
license-file: LICENSE
author: Scrive AB
maintainer: Gracjan Polak <[email protected]>,
Jonathan Jouty <[email protected]>,
Mikhail Glushenkov <[email protected]>
copyright: Scrive AB
category: Data
build-type: Simple
extra-source-files: README.md, CHANGELOG.md
tested-with: GHC ==8.8.4 || ==8.10.7 || ==9.0.2 || ==9.2.1
source-repository head
type: git
location: https://github.com/scrive/unjson.git
source-repository this
type: git
location: https://github.com/scrive/unjson.git
tag: 0.15.2.1
library
exposed-modules: Data.Unjson
Data.Unjson.Internal.Aeson.Compat
-- other-extensions:
build-depends: base >= 4.13 && < 5,
aeson >= 1.0,
attoparsec,
bytestring >= 0.10,
containers,
free,
hashable,
invariant,
pretty,
primitive,
scientific,
semigroups >= 0.16,
text,
time,
unordered-containers,
vector
hs-source-dirs: src
ghc-options: -Wall
default-language: Haskell2010
default-extensions: BangPatterns,
DeriveDataTypeable,
DeriveFunctor,
ExtendedDefaultRules,
FlexibleContexts,
FlexibleInstances,
GADTs,
GeneralizedNewtypeDeriving,
OverloadedStrings,
RankNTypes,
ScopedTypeVariables,
TypeFamilies,
UndecidableInstances
Test-Suite test
type: exitcode-stdio-1.0
main-is: Test.hs
hs-source-dirs: test
build-depends: unjson, base, text, aeson,
free, scientific, attoparsec,
unordered-containers, vector, HUnit, bytestring >= 0.10,
pretty, primitive, containers, time,
hashable, invariant
ghc-options: -Wall
default-language: Haskell2010
default-extensions: BangPatterns,
DeriveDataTypeable,
DeriveFunctor,
ExtendedDefaultRules,
FlexibleContexts,
FlexibleInstances,
GADTs,
GeneralizedNewtypeDeriving,
OverloadedStrings,
RankNTypes,
ScopedTypeVariables,
TypeFamilies,
UndecidableInstances