packages feed

pipes-cborg-0.1: pipes-cborg.cabal

name: pipes-cborg
version: 0.1
license: BSD3
license-file: LICENSE
copyright: Copyright (c) Renzo Carbonara 2019
author: Renzo Carbonara
maintainer: renλren.zone
stability: Experimental
homepage: https://github.com/k0001/pipes-cborg
bug-reports: https://github.com/k0001/pipes-cborg/issues
category: Pipes
build-type: Simple
synopsis: Encode and decode cborg streams using the pipes and cborg libraries.
cabal-version: >=1.8
extra-source-files: README.md changelog.md
description:
  Encode and decode binary Pipes streams using the @cborg@ library.
  .
  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-cborg.git

library
    hs-source-dirs: src
    exposed-modules: Pipes.CBOR
    ghc-options: -Wall -O2
    ghcjs-options: -Wall -O3
    build-depends:
          base >=4.5 && <5
        , cborg
        , bytestring
        , ghc-prim
        , pipes
        , pipes-parse
        , pipes-bytestring
        , serialise
        , transformers

test-suite tests
    type: exitcode-stdio-1.0
    hs-source-dirs: tests
    main-is: Main.hs
    build-depends:
          base
        , cborg
        , bytestring
        , pipes
        , pipes-bytestring
        , pipes-cborg
        , serialise
        , QuickCheck
        , tasty
        , tasty-quickcheck
        , transformers