packages feed

proto3-wire-1.1.0: proto3-wire.cabal

name:                proto3-wire
version:             1.1.0
synopsis:            A low-level implementation of the Protocol Buffers (version 3) wire format
license:             Apache-2.0
license-file:        LICENSE
author:              Awake Networks
maintainer:          opensource@awakenetworks.com
copyright:           2016 Awake Networks
category:            Codec
build-type:          Simple
cabal-version:       >=1.10

library
  exposed-modules:     Proto3.Wire
                       Proto3.Wire.Builder
                       Proto3.Wire.Class
                       Proto3.Wire.Decode
                       Proto3.Wire.Encode
                       Proto3.Wire.Tutorial
                       Proto3.Wire.Types
  build-depends:       base >=4.9 && <=5.0,
                       bytestring >=0.10.6.0 && <0.11.0,
                       cereal >= 0.5.1 && <0.6,
                       containers >=0.5 && < 0.7,
                       deepseq ==1.4.*,
                       hashable <1.3,
                       safe ==0.3.*,
                       text >= 0.2 && <1.3,
                       unordered-containers >= 0.1.0.0 && <0.3,
                       QuickCheck >=2.8 && <3.0

  hs-source-dirs:      src
  default-language:    Haskell2010
  ghc-options:         -O2 -Wall

test-suite tests
  type:                exitcode-stdio-1.0
  main-is:             Main.hs
  hs-source-dirs:      test
  default-language:    Haskell2010
  build-depends:       base >=4.9 && <=5.0,
                       bytestring >=0.10.6.0 && <0.11.0,
                       cereal >= 0.5.1 && <0.6,
                       doctest >= 0.7.0 && <0.17,
                       proto3-wire,
                       QuickCheck >=2.8 && <3.0,
                       tasty >= 0.11 && <1.3,
                       tasty-hunit >= 0.9 && <0.11,
                       tasty-quickcheck >= 0.8.4 && <0.11,
                       text >= 0.2 && <1.3