-
Notifications
You must be signed in to change notification settings - Fork 0
/
tm.cabal
44 lines (41 loc) · 1.25 KB
/
tm.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
cabal-version: 2.2
name: tm
version: 0.1.0.0
synopsis: Turing Machine Simulator
-- description:
license: GPL-3.0-or-later
license-file: LICENSE
author: Jakob Rath
maintainer: [email protected]
category: Logic
build-type: Simple
extra-source-files: README.md
common warnings
ghc-options: -Wall
-Wcompat
-Wincomplete-record-updates
-Wincomplete-uni-patterns
-Wredundant-constraints
-Wnoncanonical-monad-instances
library
import: warnings
exposed-modules: TuringMachine
, TuringMachine.Class
, TuringMachine.Examples
, TuringMachine.Tape
, TuringMachine.TwoTapes
build-depends: base >=4.11 && <4.12
, ansi-terminal
, containers
, mtl
, text
, safe
hs-source-dirs: src
default-language: Haskell2010
executable tm
import: warnings
main-is: Main.hs
build-depends: base >=4.11 && <4.12
, tm
hs-source-dirs: app
default-language: Haskell2010