implicit-hie/package.yaml

69 lines
1.5 KiB
YAML
Raw Normal View History

2020-04-24 03:48:49 +03:00
name: implicit-hie
version: 0.1.0.0
github: "Avi-D-coder/implicit-hie"
license: BSD3
author: "Avi Dessauer"
maintainer: "avi.the.coder@gmail.com"
copyright: "2020"
extra-source-files:
- README.md
- ChangeLog.md
# Metadata used when publishing your package
# synopsis: Short description of your package
# category: Web
# To avoid duplicated efforts in documentation and dealing with the
# complications of embedding Haddock markup inside cabal files, it is
# common to point users to the README.md file.
description: Please see the README on GitHub at <https://github.com/Avi-D-coder/implicit-hie#readme>
dependencies:
- base >= 4.7 && < 5
2020-04-25 07:28:20 +03:00
- text
2020-04-24 03:48:49 +03:00
- attoparsec
2020-05-01 02:35:00 +03:00
- yaml
2020-04-24 03:48:49 +03:00
2020-04-25 07:28:20 +03:00
ghc-options:
2020-05-01 03:53:22 +03:00
- -O2
- -flate-specialise
- -fexpose-all-unfoldings
2020-04-25 07:28:20 +03:00
- -fspecialize-aggressively
- -Wall
- -Wincomplete-record-updates
- -Wincomplete-uni-patterns
- -fno-warn-unused-imports
- -fno-warn-unused-binds
- -fno-warn-name-shadowing
- -fwarn-redundant-constraints
2020-04-24 03:48:49 +03:00
library:
source-dirs: src
executables:
implicit-hie-exe:
main: Main.hs
source-dirs: app
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- implicit-hie
2020-05-01 03:48:32 +03:00
- directory
- filepath
2020-04-24 03:48:49 +03:00
tests:
implicit-hie-test:
main: Spec.hs
source-dirs: test
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- implicit-hie
2020-04-25 07:28:20 +03:00
- hspec
- hspec-attoparsec