-
Notifications
You must be signed in to change notification settings - Fork 0
/
Alchemist.cabal
53 lines (50 loc) · 1.67 KB
/
Alchemist.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
name: Alchemist
version: 0.1.0.0
synopsis: Esolang based on Chemical Reaction Networks
homepage: https://github.com/bforte/alchemist#README.md
license: BSD3
license-file: LICENSE
author: BMO
maintainer: [email protected]
copyright: 2018 BMO
category: Language
build-type: Simple
cabal-version: >=1.10
extra-source-files: README.md
executable alchemist
hs-source-dirs: src
main-is: Main.hs
other-modules: Eval
, Parser
default-extensions: LambdaCase
default-language: Haskell2010
ghc-options: -Wunused-imports -Wunused-matches -Wincomplete-patterns -threaded
build-depends: base >= 4.7 && < 5
, containers
, mtl
, parsec
, random
, vector
library
exposed-modules: Parser
other-modules: Eval
hs-source-dirs: src
build-depends: base >=4.7 && <5
, containers
, mtl
, parsec
, random
, vector
default-extensions: LambdaCase
default-language: Haskell2010
test-suite parser-tests
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs: test
build-depends: base
, Alchemist
, hspec
, parsec
, vector
default-extensions: LambdaCase
default-language: Haskell2010