packages feed

vector-bytes-instances-0.1: vector-bytes-instances.cabal

name: vector-bytes-instances
version: 0.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
author: Renzo Carbonara
maintainer: renzocarbonara¡gmail!com
stability: Experimental
category: Data
build-type: Simple
cabal-version: >=1.8

library
  ghc-options: -Wall -O2
  exposed-modules: Data.Vector.Serial
  build-depends:
    base > 3 && < 4.10,
    vector >= 0.6 && < 0.12,
    bytes >= 0.13 && < 0.16

test-suite tests
  type: exitcode-stdio-1.0
  main-is: test/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