packages feed

map-exts-0.1.0.0: map-exts.cabal

name:                map-exts
version:             0.1.0.0
synopsis:            Extensions for Data.Map
description:         Please see README.md
homepage:            http://github.com/elsen-trading/map-extensions#readme
license:             BSD3
license-file:        LICENSE
author:              Charles Cooper
maintainer:          cooper.charles.m@gmail.com
copyright:           2016 Elsen, Inc
category:            Data Structures
build-type:          Simple
cabal-version:       >=1.10
extra-source-files:
  README.md
  titanic.csv

executable example
  hs-source-dirs:      src
  main-is:             Main.hs
  default-language:    Haskell2010
  build-depends:       base >= 4.7 && < 5,
                       containers
  other-modules:       Data.Map.Extensions
                       Data.Map.Function

executable titanic-example
  hs-source-dirs:      src
  main-is:             Titanic.hs
  default-language:    Haskell2010
  build-depends:       base >= 4.7 && < 5,
                       containers,
                       cassava,
                       bytestring
  other-modules:       Data.Map.Extensions
                       Data.Map.Function

library
  hs-source-dirs:      src
  exposed-modules:     Data.Map.Extensions
  other-modules:       Data.Map.Function
  default-language:    Haskell2010
  build-depends:       base >= 4.7 && < 5,
                       containers