packages feed

dependent-state-1.0.0: dependent-state.cabal

name: dependent-state
version: 1.0.0
cabal-version: >=1.10
build-type: Simple
license: Apache-2.0
license-file: LICENSE
copyright: Copyright (C) 2015 Wojciech Danilo
maintainer: Wojciech Danilo <wojciech.danilo@gmail.com>
stability: experimental
homepage: https://github.com/wdanilo/dependent-state
bug-reports: https://github.com/wdanilo/dependent-state/issues
synopsis: Control structure similar to Control.Monad.State, allowing multiple nested states, distinguishable by provided phantom types.
category: Data
author: Wojciech Danilo

library
    exposed-modules:
        Control.Monad.State.Dependent
    build-depends:
        base >=4.6 && <4.9,
        lens >=4.13,
        mtl >=2.2.1,
        prologue -any
    default-language: Haskell2010
    default-extensions: ConstraintKinds DataKinds DefaultSignatures
                        DeriveDataTypeable DeriveFoldable DeriveFunctor DeriveGeneric
                        DeriveTraversable DoAndIfThenElse EmptyDataDecls FlexibleContexts
                        FlexibleInstances GeneralizedNewtypeDeriving InstanceSigs
                        LambdaCase MultiParamTypeClasses NoImplicitPrelude
                        OverloadedStrings StandaloneDeriving TemplateHaskell TupleSections
                        TypeOperators ViewPatterns TypeFamilies
    hs-source-dirs: src
    ghc-options: -Wall -O2