packages feed

extended-containers-0.1.0.0: extended-containers.cabal

name:                extended-containers
version:             0.1.0.0
synopsis:            Heap and Vector container types
description:
  This package contains general-purpose implementations of various immutable container types
  including vectors, heaps and priority heaps.
homepage:            https://github.com/konsumlamm/extended-containers#readme
bug-reports:         https://github.com/konsumlamm/extended-containers/issues
license:             BSD3
license-file:        LICENSE
author:              konsumlamm
maintainer:          konsumlamm@gmail.com
copyright:           2019 konsumlamm
build-type:          Simple
extra-source-files:  README.md
category:            Data Structures
cabal-version:       >= 1.10
tested-with:
  GHC == 8.0.1,
  GHC == 8.0.2,
  GHC == 8.2.2,
  GHC == 8.4.3,
  GHC == 8.4.4,
  GHC == 8.6.3,
  GHC == 8.6.4,
  GHC == 8.6.5,
  GHC == 8.8.2,
  GHC == 8.8.3

source-repository head
  type:     git
  location: https://github.com/konsumlamm/extended-containers.git

library
  hs-source-dirs:      src
  exposed-modules:
    Data.AMT
    Data.Heap
    Data.PrioHeap
  other-modules:
    Data.Heap.Internal
    Util.Internal.StrictList
  ghc-options:         -O2 -Wall -Wno-name-shadowing -Wredundant-constraints
  build-depends:
    base         >= 4.9 && < 5,
    transformers >= 0.5.2 && < 0.6,
    vector       >= 0.11 && < 0.13
  default-language:    Haskell2010

test-suite test
  hs-source-dirs:      test
  main-is:             Spec.hs
  type:                exitcode-stdio-1.0
  ghc-options:         -Wall -Wno-orphans
  build-depends:
    base                >= 4.9 && < 5,
    extended-containers,
    hspec               >= 2.2.4 && < 2.8,
    QuickCheck          >= 2.8.2 && < 2.15
  default-language:    Haskell2010