File: aeson-qq.cabal

package info (click to toggle)
haskell-aeson-qq 0.8.3-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 76 kB
  • sloc: haskell: 251; makefile: 5
file content (84 lines) | stat: -rw-r--r-- 2,101 bytes parent folder | download
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
cabal-version: 1.12

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

name:             aeson-qq
version:          0.8.3
synopsis:         JSON quasiquoter for Haskell
description:      @aeson-qq@ provides a JSON quasiquoter for Haskell.
                  .
                  This package exposes the function `aesonQQ` that compile-time
                  converts a string representation of a JSON value into a
                  `Data.Aeson.Value`.  `aesonQQ` has the signature
                  .
                  >aesonQQ :: QuasiQuoter
                  .
                  Consult the @README@ for documentation:
                  <https://github.com/sol/aeson-qq#readme>
homepage:         https://github.com/sol/aeson-qq#readme
bug-reports:      https://github.com/sol/aeson-qq/issues
license:          MIT
license-file:     LICENSE
author:           Oscar Finnsson
maintainer:       Simon Hengel <sol@typeful.net>
category:         JSON
build-type:       Simple

source-repository head
  type: git
  location: https://github.com/sol/aeson-qq

library
  ghc-options: -Wall
  hs-source-dirs:
      src
  exposed-modules:
      Data.Aeson.QQ
  other-modules:
      Data.JSON.QQ
      Paths_aeson_qq
  default-language: Haskell2010
  build-depends:
      aeson >=0.6
    , attoparsec
    , base >=4.5 && <5
    , base-compat
    , haskell-src-meta >=0.1.0
    , parsec
    , scientific
    , template-haskell
    , text
    , vector

test-suite spec
  type: exitcode-stdio-1.0
  ghc-options: -Wall
  hs-source-dirs:
      src
      test
  main-is: Spec.hs
  other-modules:
      Data.Aeson.QQ
      Data.JSON.QQ
      Data.Aeson.QQSpec
      Data.JSON.QQSpec
      Person
      Paths_aeson_qq
  default-language: Haskell2010
  build-depends:
      aeson >=0.6
    , attoparsec
    , base >=4.5 && <5
    , base-compat
    , ghc-prim
    , haskell-src-meta >=0.1.0
    , hspec
    , parsec
    , scientific
    , template-haskell
    , text
    , vector