packages feed

array-list-0.2.0.0: array-list.cabal

cabal-version: 1.12

-- This file has been generated from package.yaml by hpack version 0.33.0.
--
-- see: https://github.com/sol/hpack
--
-- hash: 0dfaca7090560c3bcf961025267c1e7ca59942261400502331a0a3747c130de9

name:           array-list
version:        0.2.0.0
synopsis:       IsList instances of Array for OverloadedLists extension
description:    This package provides "orphan" 'IsList' instances for 'Array' data types
                with `Integral` indices up to 5 dimensions to allow initializing
                'Array's from [nested] lists using 'OverloadedLists' GHC extension.
                .
                It also includes more generic 'arrayNestedList' and 'toNestedList'
                functions to convert between nested lists and 'Array's with any indices.
category:       Data, Array, List
homepage:       https://github.com/epoberezkin/array-list#readme
bug-reports:    https://github.com/epoberezkin/array-list/issues
author:         Evgeny Poberezkin
maintainer:     evgeny@poberezkin.com
copyright:      2020 Evgeny Poberezkin
license:        MIT
license-file:   LICENSE
build-type:     Simple
extra-source-files:
    README.md
    CHANGELOG.md

source-repository head
  type: git
  location: https://github.com/epoberezkin/array-list

library
  exposed-modules:
      Data.Array.IsList
  other-modules:
      Paths_array_list
  hs-source-dirs:
      src
  ghc-options: -Wall -Wcompat -Werror=incomplete-patterns -Wredundant-constraints -Wincomplete-record-updates -Wincomplete-uni-patterns
  build-depends:
      array ==0.5.*
    , base >=4.7 && <5
  default-language: Haskell2010

test-suite array-list-doctest
  type: exitcode-stdio-1.0
  main-is: doctest-driver.hs
  other-modules:
      Main
      Paths_array_list
  hs-source-dirs:
      tests
  ghc-options: -Wall -Wcompat -Werror=incomplete-patterns -Wredundant-constraints -Wincomplete-record-updates -Wincomplete-uni-patterns
  build-depends:
      array ==0.5.*
    , base >=4.7 && <5
    , doctest >=0.16 && <0.18
    , doctest-driver-gen ==0.3.*
  default-language: Haskell2010

test-suite array-list-test
  type: exitcode-stdio-1.0
  main-is: Main.hs
  other-modules:
      Paths_array_list
  hs-source-dirs:
      tests
  ghc-options: -Wall -Wcompat -Werror=incomplete-patterns -Wredundant-constraints -Wincomplete-record-updates -Wincomplete-uni-patterns
  build-depends:
      array ==0.5.*
    , array-list
    , base >=4.7 && <5
    , hspec ==2.7.*
  default-language: Haskell2010