-
Notifications
You must be signed in to change notification settings - Fork 0
/
haskell.cabal
76 lines (68 loc) · 1.77 KB
/
haskell.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
cabal-version: 3.4
name: automata
-- The package version.
-- See the Haskell package versioning policy (PVP) for standards
-- guiding when and how versions should be incremented.
-- https://pvp.haskell.org
-- PVP summary: +-+------- breaking API changes
-- | | +----- non-breaking API additions
-- | | | +--- code changes with no API change
version: 0.1.0.0
homepage: https://github.com/neurallambda/automata
license: NONE
author: neurallambda
maintainer: neurallambda@proton.me
category: Data
build-type: Simple
extra-doc-files: CHANGELOG.md
common warnings
ghc-options: -Wall
executable automata
import: warnings
main-is: Main.hs
ghc-options: -O2 -threaded -rtsopts -with-rtsopts=-N
build-depends:
base ^>=4.17.2.1,
mtl,
containers,
random,
aeson,
bytestring,
vector,
text,
optparse-applicative,
automata
-- exe source files.
hs-source-dirs: app
default-language: GHC2021
library
import: warnings
exposed-modules:
Data.List.Extra,
Automata,
FSM,
PDA,
QA
build-depends:
base ^>=4.17.2.1,
mtl,
containers,
random,
bytestring,
vector,
text,
pqueue,
aeson
hs-source-dirs: src
default-language: GHC2021
test-suite haskell-test
-- Import common warning flags.
import: warnings
default-language: GHC2021
type: exitcode-stdio-1.0
-- test source files
hs-source-dirs: test
main-is: Main.hs
build-depends:
base ^>=4.17.2.1,
automata