packages feed

nonemptymap-0.0.6.0: nonemptymap.cabal

name:                nonemptymap
version:             0.0.6.0
synopsis:            A NonEmptyMap Implementation
description:         This package intends to allow general use of a NonEmptyMap
                     which is very beneficial as sometimes you want the functionality
                     this provides.
homepage:            https://github.com/ChristopherDavenport/nonemptymap#readme
license:             BSD3
license-file:        LICENSE
author:              Christopher Davenport
maintainer:          Chris@ChristopherDavenport.tech
copyright:           2018 Christopher Davenport
category:            Data Structures
build-type:          Simple
extra-source-files:  README.md
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  exposed-modules:     Data.Map.NonEmpty
  build-depends:       base >= 4.7 && < 5
                       , containers >= 0.5.8 && < 0.7
                       , semigroupoids >= 5 && < 6
  default-language:    Haskell2010

source-repository head
  type:     git
  location: https://github.com/ChristopherDavenport/nonemptymap