polysemy/package.yaml

107 lines
2.2 KiB
YAML
Raw Normal View History

2019-03-20 07:46:26 +03:00
name: polysemy
2019-02-13 23:52:56 +03:00
version: 0.1.0.0
2019-03-20 07:46:26 +03:00
github: "isovector/polysemy"
2019-02-13 23:52:56 +03:00
license: BSD3
author: "Sandy Maguire"
maintainer: "sandy@sandymaguire.me"
copyright: "2019 Sandy Maguire"
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.
2019-03-20 07:46:26 +03:00
description: Please see the README on GitHub at <https://github.com/isovector/polysemy#readme>
2019-02-13 23:52:56 +03:00
dependencies:
- base >= 4.7 && < 5
2019-02-14 05:53:21 +03:00
- transformers
- mtl
2019-03-20 07:28:14 +03:00
- template-haskell
- syb
2019-02-13 23:52:56 +03:00
2019-03-18 04:03:23 +03:00
flags:
dump-core:
description: Dump HTML for the core generated by GHC during compilation
2019-03-19 06:04:21 +03:00
default: False
2019-03-18 04:03:23 +03:00
manual: True
2019-02-13 23:52:56 +03:00
library:
2019-03-20 08:44:23 +03:00
ghc-options: -O2 -Wall
2019-02-13 23:52:56 +03:00
source-dirs: src
2019-03-20 16:53:22 +03:00
default-extensions:
- DataKinds
- DeriveFunctor
- FlexibleContexts
- GADTs
- LambdaCase
- PolyKinds
- RankNTypes
- ScopedTypeVariables
- StandaloneDeriving
- TypeApplications
- TypeOperators
- UnicodeSyntax
2019-03-18 04:03:23 +03:00
when:
- condition: flag(dump-core)
then:
dependencies:
- dump-core
ghc-options:
- -fplugin=DumpCore
- -fplugin-opt DumpCore:core-html
else: {}
2019-02-13 23:52:56 +03:00
executables:
2019-03-20 07:46:26 +03:00
polysemy-exe:
2019-02-13 23:52:56 +03:00
main: Main.hs
source-dirs: app
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
2019-03-20 07:46:26 +03:00
- polysemy
2019-03-18 04:03:23 +03:00
when:
- condition: flag(dump-core)
then:
dependencies:
- dump-core
ghc-options:
- -fplugin=DumpCore
- -fplugin-opt DumpCore:core-html
else: {}
2019-02-13 23:52:56 +03:00
tests:
2019-03-20 07:46:26 +03:00
polysemy-test:
2019-03-19 06:04:21 +03:00
main: Main.hs
2019-02-13 23:52:56 +03:00
source-dirs: test
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
2019-03-20 07:46:26 +03:00
- polysemy
2019-03-17 21:09:09 +03:00
- inspection-testing
- hspec
2019-02-22 03:34:06 +03:00
benchmarks:
2019-03-20 07:46:26 +03:00
polysemy-bench:
2019-02-22 03:34:06 +03:00
source-dirs: bench
main: countDown.hs
dependencies:
- criterion
- free
- freer-simple
- mtl
2019-03-20 07:46:26 +03:00
- polysemy