packages feed

pringletons-0.1.0.0: pringletons.cabal

name:                pringletons
version:             0.1.0.0
synopsis:            Classes and data structures complementing the singletons library
description:         Please see README.md
homepage:            https://github.com/andrewthad/pringletons
license:             BSD3
license-file:        LICENSE
author:              Andrew Martin
maintainer:          andrew.thaddeus@gmail.com
copyright:           2016 Andrew Martin
category:            web
build-type:          Simple
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  exposed-modules:
    Data.Singletons.Map
    Data.Singletons.Class
    Data.Case.Enumerate
  build-depends:       
      base >= 4.7 && < 5
    , hashable
    , singletons
    , aeson
    , text
    , vector
    , unordered-containers
    , template-haskell
  default-language:    Haskell2010
  default-extensions:
    TypeOperators
    InstanceSigs
    KindSignatures
    DataKinds
    TypeFamilies
    GADTs
    ExistentialQuantification
    PolyKinds
    ScopedTypeVariables
    DeriveGeneric
    RankNTypes
    GeneralizedNewtypeDeriving
    StandaloneDeriving
    DefaultSignatures
    BangPatterns

source-repository head
  type:     git
  location: https://github.com/andrewthad/pringletons