forked from purefunctor/Fungoid
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Fungoid.cabal
42 lines (36 loc) · 1.3 KB
/
Fungoid.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
cabal-version: 2.4
name: Fungoid
version: 0.1.0.0
synopsis: Befunge-93 interpreter written in Haskell!
description: Befunge-93 interpreter written in Haskell!
homepage: https://github.com/PureFunctor/Fungoid
license: MIT
license-file: LICENSE
author: PureFunctor
copyright: Copyright (c) 2020 PureFunctor
category: Interpreter
extra-source-files: CHANGELOG.md, README.md
library
exposed-modules: Fungoid.Interpreter93,
Fungoid.Instructions,
Fungoid.Machine,
Fungoid.Stack,
Fungoid.Torus
-- other-modules:
-- other-extensions:
build-depends: base ^>=4.12.0.0,
bytestring >= 0.10.8 && < 0.11,
containers >= 0.6.0 && < 0.7,
mtl >= 2.2.2 && < 2.3,
random==1.1
hs-source-dirs: lib
default-language: Haskell2010
executable Fungoid
main-is: Fungoid.hs
-- other-modules:
-- other-extensions:
build-depends: base ^>=4.12.0.0,
bytestring >= 0.10.8 && < 0.11,
Fungoid
hs-source-dirs: app
default-language: Haskell2010