packages feed

halves-0.1.0.0: halves.cabal

name:                halves
version:             0.1.0.0
synopsis:            Splitting/combining data structures to/from halves, quarters, eighths
description:         Splitting/combining data structures to/from halves, quarters, eighths.
license:             BSD3
license-file:        LICENSE
author:              Brian McKenna
maintainer:          brian@brianmckenna.org
category:            Data
build-type:          Simple
cabal-version:       >=1.10

library
  exposed-modules:     Data.Halves
                     , Data.Halves.FiniteBits
                     , Data.Halves.Tuple

  build-depends:       base >=4.7 && <4.11
                     , lens >=4.15 && <4.17
  hs-source-dirs:      src
  default-language:    Haskell2010

test-suite props
  type:                exitcode-stdio-1.0
  main-is:             tests/Props.hs
  build-depends:       base
                     , lens
                     , halves
                     , hedgehog >= 0.5 && <0.6
  default-language:    Haskell2010

source-repository head
  type:     git
  location: https://github.com/puffnfresh/halves