cabal-version: 2.4 -- Initial package description 'indexed-containers.cabal' generated by -- 'cabal init'. For further documentation, see -- http://haskell.org/cabal/users-guide/ name: indexed-containers version: 0.1.0.1 synopsis: Simple, no-frills indexed lists. description: If the lengths of your lists are known statically, using indexed lists improves type safety with no runtime overhead. category: Data Structures homepage: https://github.com/zliu41/indexed-containers#readme bug-reports: https://github.com/zliu41/indexed-containers/issues author: Ziyang Liu maintainer: Ziyang Liu copyright: 2020 Ziyang Liu license: BSD-3-Clause license-file: LICENSE build-type: Simple extra-source-files: CHANGELOG.md, README.md tested-with: GHC==8.10.1, GHC==8.8.2, GHC==8.6.5, GHC==8.4.4 library exposed-modules: Data.NList hs-source-dirs: src ghc-options: -Wall build-depends: base >=4.7 && <5 default-language: Haskell2010 test-suite hspec type: exitcode-stdio-1.0 main-is: Main.hs other-modules: Data.NListSpec hs-source-dirs: test/hspec ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N build-depends: base >=4.7 && <5 , hspec >=2.4.8 && <2.8 , indexed-containers default-language: Haskell2010 build-tool-depends: hspec-discover:hspec-discover == 2.*