-
Notifications
You must be signed in to change notification settings - Fork 1
/
fused-effects-optics.cabal
47 lines (41 loc) · 1.83 KB
/
fused-effects-optics.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
cabal-version: 2.2
name: fused-effects-optics
version: 0.2.1.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: [email protected]
copyright: 2020-2021 Patrick Thomson
category: Control
build-type: Simple
extra-doc-files: README.md
, CHANGELOG.md
tested-with: GHC == 8.8.3
GHC == 8.10.1
GHC == 9.0
GHC == 9.2
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
Control.Effect.Optics.Indexed
build-depends: base >= 4.12 && < 5
, fused-effects >= 1 && < 1.2
, optics-core == 0.*
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