-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlambda-calculus.cabal
43 lines (40 loc) · 1.12 KB
/
lambda-calculus.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
cabal-version: 2.4
name: lambda-calculus
version: 0.1.0.0
synopsis: An LC interpreter with GHCi interface.
description:
Please see the README on GitHub at
<https://github.com/TurtlePU/lambda-calculus#readme>
homepage: https://github.com/TurtlePU/lambda-calculus#readme
bug-reports: https://github.com/TurtlePU/lambda-calculus/issues
license: MIT
license-file: LICENSE
author: TurtlePU
maintainer: sokolov.p64@gmail.com
extra-source-files:
CHANGELOG.md
README.md
library
exposed-modules:
Data.Labeled
Data.StringTrie
Data.Term
build-depends:
base
, bytestring
, utf8-string >=1.0
, bytestring-trie >=0.2
, unordered-containers >=0.2
hs-source-dirs: src
default-language: Haskell2010
executable lambda-calculus
main-is: Main.hs
other-modules: Command, Parser
build-depends:
base >=4.14.3.0
, mtl >=2.3
, megaparsec >=9.0
, haskeline >=0.8
, lambda-calculus
hs-source-dirs: app
default-language: Haskell2010