packages feed

extended-containers-0.1.1.0: extended-containers.cabal

name:               extended-containers
version:            0.1.1.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
bug-reports:        https://github.com/konsumlamm/extended-containers/issues
license:            BSD3
license-file:       LICENSE
author:             konsumlamm
maintainer:         konsumlamm@gmail.com
copyright:          2019-2021 konsumlamm
build-type:         Simple
extra-source-files:
  CHANGELOG.md
  README.md
category:           Data Structures
cabal-version:      2.0
tested-with:
  GHC == 8.0.2,
  GHC == 8.2.2,
  GHC == 8.4.4,
  GHC == 8.6.5,
  GHC == 8.8.3,
  GHC == 8.10.4,
  GHC == 9.0.1

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.Array
    Util.Internal.Indexed
    Util.Internal.StrictList
  ghc-options:          -O2 -Wall -Wno-name-shadowing -Wredundant-constraints
  build-depends:
    base       >= 4.9 && < 5,
    deepseq   ^>= 1.4.2,
    primitive ^>= 0.7.1
  default-language:     Haskell2010

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