-
Notifications
You must be signed in to change notification settings - Fork 1
/
fuzzer.cabal
35 lines (34 loc) · 1.13 KB
/
fuzzer.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
name: fuzzer
version: 0.1.0.0
homepage: https://github.com/m-schmidt/fuzzer#readme
license: BSD3
license-file: LICENSE
author: Michael Schmidt
maintainer: [email protected]
copyright: 2017 Michael Schmidt
category: Development
build-type: Simple
cabal-version: >=1.10
extra-source-files: README.md
executable fuzzer
hs-source-dirs: src
main-is: Main.hs
other-modules: Check
, Commandline
, Convention
, ConventionTest
, Error
, Expression
, ExpressionTest
, Loop
, LoopTest
, Str
default-language: Haskell2010
build-depends: base >= 4.14 && < 4.15
, bytestring
, containers
, directory
, process
, template-haskell >= 2.16 && < 2.17
, QuickCheck
ghc-options: -Wall -O2