-
Notifications
You must be signed in to change notification settings - Fork 4
/
lens-sop.cabal
61 lines (59 loc) · 2.3 KB
/
lens-sop.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
name: lens-sop
version: 0.3.0
synopsis: Computing lenses generically using generics-sop
description:
This library contains a definition of generalized lenses, along with SOP-style
generic functions (based on
@<https://hackage.haskell.org/package/generics-sop generics-sop>@)
that compute lenses for a given record type. Generalized lenses for the
SOP representation types are also provided.
.
Furthermore, a generic function is provided that computes a lens from
a given (string-based) path specification.
.
license: BSD3
license-file: LICENSE
author: Edsko de Vries <[email protected]>, Andres Löh <[email protected]>
maintainer: [email protected]
category: Generics
build-type: Simple
cabal-version: >=1.10
extra-source-files: CHANGELOG.md
tested-with: GHC==8.10.7
, GHC==9.2.8
, GHC==9.4.8
, GHC==9.6.6
, GHC==9.8.2
, GHC==9.10.1
source-repository head
type: git
location: https://github.com/well-typed/lens-sop
library
exposed-modules: Generics.SOP.Lens
Generics.SOP.Lens.Named
Generics.SOP.Lens.Computed
build-depends: base >= 4.14 && < 4.21,
generics-sop >= 0.2.3 && < 0.6,
optics-core >= 0.4 && < 0.5,
transformers >= 0.3 && < 0.7
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
-Wredundant-constraints
default-extensions: ScopedTypeVariables
TypeFamilies
RankNTypes
TypeOperators
GADTs
ConstraintKinds
MultiParamTypeClasses
TypeSynonymInstances
FlexibleInstances
FlexibleContexts
DeriveFunctor
DeriveFoldable
DeriveTraversable
DefaultSignatures
KindSignatures
DataKinds
FunctionalDependencies