packages feed

TotalMap-0.1.1.1: TotalMap.cabal

-- Initial TotalMap.cabal generated by cabal init.  For further 
-- documentation, see http://haskell.org/cabal/users-guide/

name:                TotalMap
version:             0.1.1.1
synopsis:            A total map datatype
description:         Provides a datatype representing a total map using an enum type as keys
license:             MIT
license-file:        LICENSE
author:              Ed Wastell
maintainer:          ed@wastell.co.uk
-- copyright:           
category:            Control
build-type:          Simple
extra-source-files:  ChangeLog.md
  README.lhs
  README.md
cabal-version:       >=1.10

source-repository head
  type: git
  location: https://github.com/edwardwas/TotalMap

library
  exposed-modules:     TotalMap
  -- other-modules:       
  -- other-extensions:    
  build-depends:       base >=4.9 && <4.13
    , generics-sop >= 0.3 && < 0.6
    , lens >= 4.16 && < 4.20
    , adjunctions >= 4.4 && < 4.5
    , distributive >= 0.5 && < 0.7
  hs-source-dirs:      src
  default-language:    Haskell2010
  ghc-options: -Wall

test-suite readme
  build-depends:       base >=4.8 && <4.13
    , TotalMap
    , generics-sop >= 0.3 && < 0.6
    , lens >= 4.16 && < 4.20
    , adjunctions >= 4.4 && < 4.5
    , distributive >= 0.5 && < 0.7
    , markdown-unlit >= 0.5 && < 0.6
  main-is: README.lhs
  ghc-options:    -pgmL markdown-unlit -Wall -Wno-unused-top-binds
  type:           exitcode-stdio-1.0
  default-language:    Haskell2010