name: vector-bytes-instances
version: 0.1.1
synopsis: Serial (from the bytes package) for Vector (from the vector package)
description:
  Serial (from the bytes package) for Vector (from the vector package)
  .
  Based on the original BSD3-licensed work by Don Stewart in the
  vector-binary-instances library.
homepage: https://github.com/k0001/vector-bytes-instances
bug-reports: https://github.com/k0001/vector-bytes-instances/issues
license: BSD3
license-file: LICENSE
extra-source-files: CHANGELOG.md
author: Renzo Carbonara
copyright: Renzo Carbonara 2017-2018
maintainer: ren¡ren!zone
stability: Experimental
category: Data
build-type: Simple
cabal-version: >=1.8

library
  ghc-options: -Wall -O2
  hs-source-dirs: lib
  exposed-modules: Data.Vector.Serial
  build-depends:
    base > 3 && < 5,
    vector >= 0.6,
    bytes >= 0.13

test-suite tests
  type: exitcode-stdio-1.0
  hs-source-dirs: test
  main-is: Main.hs
  build-depends:
      base
    , vector-bytes-instances
    , vector
    , bytes
    , tasty
    , tasty-quickcheck

source-repository head
  type: git
  location: https://github.com/k0001/vector-bytes-instances