-
Notifications
You must be signed in to change notification settings - Fork 0
/
lfc.cabal
55 lines (52 loc) · 1.33 KB
/
lfc.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
-- This file has been generated from package.yaml by hpack version 0.14.0.
--
-- see: https://github.com/sol/hpack
name: lfc
version: 0.1.0.0
synopsis: An experiment with STLC, recursion schemes and Cofree.
description: Please see README.md
homepage: https://github.com/romac/lfc-haskell#readme
bug-reports: https://github.com/romac/lfc-haskell/issues
license: BSD3
license-file: LICENSE
author: Romain Ruetschi
maintainer: romain.ruetschi@gmail.com
copyright: 2017 Romain Ruetschi
category: Development
build-type: Simple
cabal-version: >= 1.10
source-repository head
type: git
location: https://github.com/romac/lfc-haskell
library
hs-source-dirs:
src
default-extensions: NoImplicitPrelude
build-depends:
ansi-wl-pprint
, base >=4.7 && <5
, comonad
, containers
, deriving-compat
, free
, freer
, protolude
, recursion-schemes
, semigroups
exposed-modules:
LFC.Annotate
LFC.Error
LFC.Example
LFC.FreshName
LFC.Infer
LFC.Memoize
LFC.Name
LFC.Prelude
LFC.PrettyPrint
LFC.Subst
LFC.Tree
LFC.Tree.Typed
LFC.Tree.Untyped
LFC.Ty
LFC.Unify
default-language: Haskell2010