92 lines
1.6 KiB
YAML
92 lines
1.6 KiB
YAML
|
name: turing-hs
|
||
|
version: 0.1.0.0
|
||
|
|
||
|
extra-source-files:
|
||
|
- README.md
|
||
|
|
||
|
dependencies:
|
||
|
- base >= 4.7 && < 5
|
||
|
|
||
|
library:
|
||
|
source-dirs: src
|
||
|
|
||
|
executables:
|
||
|
turing:
|
||
|
main: Main.hs
|
||
|
source-dirs: app
|
||
|
ghc-options:
|
||
|
- -threaded
|
||
|
- -rtsopts
|
||
|
- -with-rtsopts=-N
|
||
|
dependencies:
|
||
|
- turing-hs
|
||
|
|
||
|
tests:
|
||
|
turing-hs-test:
|
||
|
main: Spec.hs
|
||
|
source-dirs: test
|
||
|
ghc-options:
|
||
|
- -threaded
|
||
|
- -rtsopts
|
||
|
- -with-rtsopts=-N
|
||
|
dependencies:
|
||
|
- turing-hs
|
||
|
|
||
|
ghc-options:
|
||
|
- -Wall
|
||
|
- -Werror
|
||
|
- -Wcompat
|
||
|
- -Widentities
|
||
|
- -Wincomplete-patterns
|
||
|
- -Wincomplete-record-updates
|
||
|
- -Wincomplete-uni-patterns
|
||
|
- -Wmissing-deriving-strategies
|
||
|
- -Wmissing-home-modules
|
||
|
- -Wname-shadowing
|
||
|
- -Wpartial-fields
|
||
|
- -Wredundant-constraints
|
||
|
- -Wunused-packages
|
||
|
- -Wunused-type-patterns
|
||
|
|
||
|
default-extensions:
|
||
|
- BangPatterns
|
||
|
- BinaryLiterals
|
||
|
- BlockArguments
|
||
|
- ConstraintKinds
|
||
|
- DataKinds
|
||
|
- DefaultSignatures
|
||
|
- DeriveDataTypeable
|
||
|
- DeriveFoldable
|
||
|
- DeriveFunctor
|
||
|
- DeriveGeneric
|
||
|
- DeriveTraversable
|
||
|
- DerivingStrategies
|
||
|
- DoAndIfThenElse
|
||
|
- EmptyDataDecls
|
||
|
- ExistentialQuantification
|
||
|
- FlexibleContexts
|
||
|
- FlexibleInstances
|
||
|
- FunctionalDependencies
|
||
|
- GADTs
|
||
|
- GeneralizedNewtypeDeriving
|
||
|
- InstanceSigs
|
||
|
- KindSignatures
|
||
|
- LambdaCase
|
||
|
- MultiParamTypeClasses
|
||
|
- MultiWayIf
|
||
|
- NamedFieldPuns
|
||
|
- OverloadedStrings
|
||
|
- PartialTypeSignatures
|
||
|
- PatternGuards
|
||
|
- PatternSynonyms
|
||
|
- PolyKinds
|
||
|
- RankNTypes
|
||
|
- RecordWildCards
|
||
|
- ScopedTypeVariables
|
||
|
- StandaloneDeriving
|
||
|
- TemplateHaskell
|
||
|
- TupleSections
|
||
|
- TypeFamilies
|
||
|
- TypeSynonymInstances
|
||
|
- ViewPatterns
|