packages feed

sub-state-0.0.0.1: sub-state.cabal

Name:                   sub-state
Version:                0.0.0.1
Author:                 Athan Clark <athan.clark@gmail.com>
Maintainer:             Athan Clark <athan.clark@gmail.com>
License:                BSD3
License-File:           LICENSE
Synopsis:               Get the total, put a single element
Description:
  Restrain your data modification to /insert/ minimal amounts, while allowing
  read access to the whole set.
Cabal-Version:          >= 1.10
Build-Type:             Simple
Category:               Control

Library
  Default-Language:     Haskell2010
  HS-Source-Dirs:       src
  GHC-Options:          -Wall
  Exposed-Modules:      Control.Monad.State.Sub
  Build-Depends:        base >= 4.6 && < 5
                      , sets
                      , mtl

Test-Suite spec
  Type:                 exitcode-stdio-1.0
  Default-Language:     Haskell2010
  Hs-Source-Dirs:       src
                      , test
  Ghc-Options:          -Wall
  Main-Is:              Spec.hs
  Build-Depends:        base
                      , tasty
                      , tasty-quickcheck
                      , tasty-hunit
                      , QuickCheck
                      , quickcheck-instances

Source-Repository head
  Type:                 git
  Location:             https://github.com/athanclark/sub-state