polysemy/polysemy-plugin/package.yaml

86 lines
1.9 KiB
YAML
Raw Normal View History

2019-04-21 01:31:17 +03:00
name: polysemy-plugin
2021-10-23 01:55:01 +03:00
version: 0.4.1.0
github: "polysemy-research/polysemy"
2019-04-21 01:31:17 +03:00
license: BSD3
author: "Sandy Maguire"
maintainer: "sandy@sandymaguire.me"
copyright: "2019 Sandy Maguire"
2019-10-28 19:25:30 +03:00
build-type: Custom
2019-04-21 01:31:17 +03:00
extra-source-files:
- README.md
- ChangeLog.md
2019-04-28 05:54:42 +03:00
synopsis: Disambiguate obvious uses of effects.
2019-04-28 05:52:23 +03:00
category: Polysemy
2019-04-21 01:31:17 +03:00
2021-06-25 20:26:27 +03:00
description: Please see the README on GitHub at <https://github.com/polysemy-research/polysemy/tree/master/polysemy-plugin#readme>
2019-04-21 01:31:17 +03:00
dependencies:
- base >= 4.9 && < 5
- ghc >= 8.6.5 && < 10
- ghc-tcplugins-extra >= 0.3 && < 0.5
- polysemy >= 1.3
- syb >= 0.7 && < 0.8
- transformers >= 0.5.2.0 && < 0.6
- containers >= 0.5 && < 0.7
2019-04-21 01:31:17 +03:00
2019-10-28 19:25:30 +03:00
custom-setup:
dependencies:
- base >= 4.9 && < 5
- Cabal
- cabal-doctest >=1.0.6 && <1.1
2019-04-21 01:31:17 +03:00
library:
source-dirs: src
2020-10-23 12:00:23 +03:00
generated-other-modules:
- Paths_polysemy_plugin
2019-04-21 01:31:17 +03:00
2019-10-29 15:24:39 +03:00
flags:
corelint:
description: Perform the corelint tests
default: False
manual: True
2019-04-21 01:31:17 +03:00
tests:
polysemy-plugin-test:
main: Main.hs
2019-04-21 01:31:17 +03:00
source-dirs: test
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
- -fplugin=Polysemy.Plugin
2019-10-29 15:24:39 +03:00
when:
- condition: flag(corelint)
ghc-options:
- -dcore-lint
- -dsuppress-all
build-tools:
- hspec-discover
2019-04-21 01:31:17 +03:00
dependencies:
- polysemy >= 1.3.0.0
2019-04-21 01:31:17 +03:00
- polysemy-plugin
2019-05-18 18:42:14 +03:00
- hspec >= 2.6.0 && < 3
- should-not-typecheck >= 2.1.0 && < 3
- inspection-testing >= 0.4.2 && < 0.5
- doctest >= 0.16.0.1 && < 0.19
generated-other-modules:
- Build_doctests
2019-04-28 05:39:18 +03:00
default-extensions:
- DataKinds
- DeriveFunctor
- FlexibleContexts
- GADTs
- LambdaCase
- PolyKinds
- RankNTypes
- ScopedTypeVariables
- StandaloneDeriving
- TypeApplications
- TypeOperators
- TypeFamilies
- UnicodeSyntax