File: pipes-aeson.cabal

package info (click to toggle)
haskell-pipes-aeson 0.4.1.8-4
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 88 kB
  • sloc: haskell: 199; makefile: 2
file content (42 lines) | stat: -rw-r--r-- 1,411 bytes parent folder | download | duplicates (2)
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
name:               pipes-aeson
version:            0.4.1.8
license:            BSD3
license-file:       LICENSE
copyright:          Copyright (c) Renzo Carbonara 2013-2017
author:             Renzo Carbonara
maintainer:         renzocarbonaraλgmail.com
stability:          Experimental
tested-with:        GHC ==8.0.2
homepage:           https://github.com/k0001/pipes-aeson
bug-reports:        https://github.com/k0001/pipes-aeson/issues
category:           Pipes, Parser
build-type:         Simple
cabal-version:      >=1.8
synopsis:           Encode and decode JSON streams using Aeson and Pipes.
extra-source-files: README.md PEOPLE changelog.md
description:
  Utilities to encode and decode Pipes streams of JSON.
  .
  See the @changelog.md@ file in the source distribution to learn about any
  important changes between version.

source-repository head
    type: git
    location: git://github.com/k0001/pipes-aeson.git

library
  hs-source-dirs:  src
  exposed-modules: Pipes.Aeson
                   Pipes.Aeson.Unchecked
  other-modules:   Pipes.Aeson.Internal
  build-depends:
      aeson            (>=0.6.1)
    , attoparsec       (>=0.10)
    , base             (>=4.5 && <5.0)
    , pipes            (>=4.1)
    , pipes-attoparsec (>=0.5)
    , pipes-bytestring (>=2.0)
    , pipes-parse      (>=3.0.1)
    , bytestring       (>=0.9.2.1)
    , transformers     (>=0.2)
  ghc-options: -Wall -O2