-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvitrea.cabal
59 lines (52 loc) · 2.13 KB
/
vitrea.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
cabal-version: 2.4
name: vitrea
version: 0.1.0.0
synopsis: Profunctor optics via the profunctor representation theorem.
description: Pure profunctor lenses and optics via the profunctor representation theorem. All the optics on this library are particular cases of a single unified definition. All the combinators on this library are instantiations of the profunctor optic to a particular Tambara module.
homepage: https://github.com/mroman42/vitrea
bug-reports: https://github.com/mroman42/vitrea/issues
license: GPL-3.0-or-later
license-file: LICENSE
author: Mario Roman
maintainer: mromang08@gmail.com
category: Lenses
extra-source-files: readme.org
source-repository head
type: git
location: https://github.com/mroman42/vitrea
library
exposed-modules: Main
, Categories
, CategoriesInstances
, Tambara
, Optics
, Combinators
-- other-modules:
other-extensions: AllowAmbiguousTypes
, ConstraintKinds
, DataKinds
, ExistentialQuantification
, FlexibleContexts
, FlexibleInstances
, FunctionalDependencies
, GADTs
, ImplicitParams
, IncoherentInstances
, KindSignatures
, LiberalTypeSynonyms
, MultiParamTypeClasses
, RankNTypes
, ScopedTypeVariables
, StandaloneDeriving
, TypeApplications
, TypeFamilies
, TypeOperators
, TypeSynonymInstances
, UndecidableInstances
build-depends: base ^>=4.16.1.0
, mtl ^>=2.2.2
, profunctors
, split
, time
hs-source-dirs: source
default-language: Haskell2010