-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathturing-machine.cabal
58 lines (54 loc) · 1.31 KB
/
turing-machine.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
56
57
58
cabal-version: 1.12
name: turing-machine
version: 0.1.2.2
description: Please see the README on GitHub at <https://gitlab.com/CrazyMind102/turing-machine#readme>
homepage: https://github.com/CrazyMind102/turing-machine#readme
bug-reports: https://github.com/CrazyMind102/turing-machine/issues
author: CrazyMind102
maintainer: tim.gravert@gmx-topmail.de
copyright: Tim Gravert
license: BSD3
license-file: LICENSE
build-type: Simple
extra-source-files:
ChangeLog.md
README.md
source-repository head
type: git
location: https://github.com/CrazyMind102/turing-machine
library
exposed-modules:
Data.TuringMachine
other-modules:
Paths_turing_machine
hs-source-dirs:
src
build-depends:
base >=4.7 && <5
, containers
, text
, yaml
default-language: Haskell2010
executable turing-machine
main-is: Main.hs
other-modules:
Paths_turing_machine
, Data.TuringMachine
hs-source-dirs:
src
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
base >=4.7 && <5
-- , bricks
, containers
, filepath
-- , microlens
-- , microlens-th
, optparse-applicative
, semigroups
, text
, turing-machine
-- , vector
-- , vty
, yaml
default-language: Haskell2010