-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathminilens.cabal
61 lines (52 loc) · 1.93 KB
/
minilens.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
name: minilens
version: 1.0.0.2
synopsis: A minimalistic lens library, providing only the simplest, most basic lens functionality.
description:
.
Lenses satisfy the properties of the Category type class, and are used
to inspect and update individual elements of a data structue in a type-safe
way. This library provides the simplest possible data types satisfying
these properties.
.
The "minilens" package aims to provide a very simple improvement on
Haskell's record syntax: the idea of composable record accessors
called 'Lens'es.
.
As of yet, there are no fancy Template Haskell APIs for generating lenses
programmatically; you are expected to write your lenses by hand. Some handy
handy combinator functions are provided to help you do this.
.
This library was originally part of the Dao package, but has been branched
into it's own package in the hopes that it will be useful in a wider
variety of projects.
homepage: https://github.com/RaminHAL9001/minilens
license: GPL-3
license-file: LICENSE
author: Ramin Honary
maintainer: [email protected]
copyright: 2008-2016 Ramin Honary
category: Data, Lens
build-type: Simple
cabal-version: >=1.10
library
exposed-modules:
Data.Lens.Minimal
default-extensions:
MultiParamTypeClasses
FlexibleInstances
FlexibleContexts
RankNTypes
build-depends:
array >=0.5.0.0 && <0.6.0.0,
bytestring >=0.10.0.0 && <0.11.0.0,
containers >=0.5.5.0 && <0.6.0.0,
mtl >=2.2.0 && <=2.2.1,
semigroups >=0.16.2.0 && <=1.0.0.0,
text >=1.2.0.0 && <1.3.0.0,
transformers >=0.3.0.0 && <=0.4.3.0,
base >=4.7 && <4.9
GHC-options: -Wall
-fno-warn-name-shadowing
-fno-warn-unused-do-bind
hs-source-dirs: src
default-language: Haskell2010