packages feed

fused-effects-optics-0.1.0.0: fused-effects-optics.cabal

cabal-version:       2.2
name:                fused-effects-optics
version:             0.1.0.0
synopsis:            Bridge between the optics and fused-effects ecosystems.
description:         Provides combinators for the optics-based manipulation of state and context types provided by the fused-effects library, similar to those provided by optics-extra for mtl-based monad transformers.
homepage:            https://github.com/fused-effects/fused-effects-optics
bug-reports:         https://github.com/fused-effects/fused-effects-optics/issues
license:             BSD-3-Clause
license-file:        LICENSE
author:              Patrick Thomson
maintainer:          patrick.william.thomson@gmail.com
copyright:           2020 Patrick Thomson
category:            Control
build-type:          Simple
extra-doc-files:     README.md
                   , CHANGELOG.md
tested-with:         GHC == 8.8.3
                     GHC == 8.10.1

source-repository head
  type:                git
  location:            https://github.com/fused-effects/fused-effects-optics.git

library
  hs-source-dirs:      src
  exposed-modules:     Control.Effect.Optics


  build-depends:       base >= 4.12 && < 4.15
                     , fused-effects >= 1 && < 1.2
                     , optics-core >= 0.3

  ghc-options:         -Wall
                       -Wincomplete-uni-patterns
                       -Wincomplete-record-updates
                       -Wcompat
                       -Widentities
                       -Wredundant-constraints
                       -fhide-source-paths
                       -Wmissing-export-lists
                       -Wpartial-fields
                       -Wmissing-deriving-strategies

  default-language:    Haskell2010