packages feed

strict-data-0.2.0.2: strict-data.cabal

name:                strict-data
version:             0.2.0.2
synopsis:            A collection of commonly used strict data structures
description:         A collection of commonly used strict data structures
homepage:            https://github.com/agrafix/strict-data#readme
license:             BSD3
license-file:        LICENSE
author:              Alexander Thiemann
                   , factis research GmbH
maintainer:          mail@athiemann.net
copyright:           2016 Alexander Thiemann <mail@athiemann.net>
                   , 2017 factis research GmbH
category:            Data
build-type:          Simple
extra-source-files:
    README.md
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  exposed-modules:     Data.Choice
                     , Data.Fail
                     , Data.Option
                     , Data.StrictList
                     , Data.StrictTuple
                     , Data.StrictVector
                     , Data.StrictVector.Mutable
                     , Data.Map.Ordered
                     , Data.Map.Unordered
  other-modules:       Data.Fail.Types
                     , Data.StrictList.Types
  build-depends:       base >= 4.7 && < 5
                     , QuickCheck
                     , aeson
                     , deepseq
                     , exceptions
                     , fail
                     , hashable
                     , monad-control
                     , mtl
                     , pretty
                     , resourcet
                     , strict
                     , text
                     , transformers
                     , transformers-base
                     , containers >= 0.5
                     , unordered-containers
                     , util-plus
                     , vector
                     , vector-algorithms
  default-language:    Haskell2010
  ghc-options:       -Wall -Wdodgy-imports

test-suite strict-data-test
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             Spec.hs
  other-modules:       Fail
                     , Option
                     , StrictList
                     , StrictVector
                     , StrictVector.Mutable
                     , Data.Map.OrderedSpec
  build-depends:       base >= 4.7 && < 5
                     , strict-data
                     , HTF
                     , vector
                     , deepseq
                     , hashable
                     , containers
  ghc-options:       -Wall
  default-language:    Haskell2010

test-suite strict-data-doctest
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             Doc.hs
  build-depends:       base >= 4.7 && < 5
                     , doctest
  default-language:    Haskell2010

source-repository head
  type:     git
  location: https://github.com/factisresearch/opensource-mono