packages feed

array-builder-0.1.4.0: array-builder.cabal

cabal-version: 2.2
name: array-builder
version: 0.1.4.0
synopsis: Builders for arrays
homepage: https://github.com/andrewthad/array-builder
bug-reports: https://github.com/andrewthad/array-builder/issues
license: BSD-3-Clause
license-file: LICENSE
author: Andrew Martin
maintainer: andrew.thaddeus@gmail.com
copyright: 2019 Andrew Martin
category: Data
extra-source-files: CHANGELOG.md

library
  exposed-modules:
    Data.Builder
    Data.Builder.Catenable
    Data.Builder.Catenable.Bytes
    Data.Builder.Catenable.Text
    Data.Builder.ST
  other-modules:
    Compat
  build-depends:
    , array-chunks >=0.1 && <0.2
    , base >=4.12 && <5
    , bytebuild >=0.3.5
    , byteslice >=0.2.7
    , bytestring
    , natural-arithmetic >=0.1.3
    , primitive >=0.6.4 && <0.10
    , run-st >=0.1 && <0.2
    , text-short >=0.1.3
  hs-source-dirs: src
  if impl(ghc >= 8.9)
    hs-source-dirs: src-post-8.9
  else
    hs-source-dirs: src-pre-8.9
  default-language: Haskell2010
  ghc-options: -Wall -O2

test-suite test
  type: exitcode-stdio-1.0
  hs-source-dirs: test
  main-is: Main.hs
  build-depends:
    , array-builder
    , base
    , tasty
    , tasty-hunit
  ghc-options: -Wall -O2
  default-language: Haskell2010