this repo has no description
1cabal-version: >=1.10
2-- Initial package description 'optics-book.cabal' generated by 'cabal
3-- init'. For further documentation, see
4-- http://haskell.org/cabal/users-guide/
5
6name: optics-book
7version: 0.1.0.0
8-- synopsis:
9-- description:
10-- bug-reports:
11-- license:
12license-file: LICENSE
13author: Kaushik Chakraborty
14maintainer: git@kaushikc.org
15-- copyright:
16-- category:
17build-type: Simple
18extra-source-files: CHANGELOG.md
19
20executable optics-book
21 main-is: Main.hs
22 other-modules: Traversals
23 -- other-extensions:
24 build-depends: base >=4.13 && <4.14
25 , aeson
26 , containers
27 , lens
28 , lens-aeson
29 , mtl
30 , text
31
32 default-extensions: TemplateHaskell
33 , FlexibleInstances
34 , FlexibleContexts
35 , RankNTypes
36 , ScopedTypeVariables
37 , TypeApplications
38 , TypeFamilies
39 , InstanceSigs
40 hs-source-dirs: app
41 default-language: Haskell2010