polysemy/package.yaml

90 lines
2.0 KiB
YAML
Raw Permalink Normal View History

2019-03-20 07:46:26 +03:00
name: polysemy
2023-10-08 14:57:42 +03:00
version: 1.9.1.3
2020-09-08 15:18:38 +03:00
github: "polysemy-research/polysemy"
2019-02-13 23:52:56 +03:00
license: BSD3
author: "Sandy Maguire"
2022-12-22 20:25:20 +03:00
maintainer: "https://funprog.zulipchat.com/#narrow/stream/216942-Polysemy"
copyright: "2019-2023 The Polysemy Lounge"
2019-10-28 19:25:30 +03:00
build-type: Custom
2019-02-13 23:52:56 +03:00
extra-source-files:
- README.md
- ChangeLog.md
2020-11-01 00:47:25 +03:00
synopsis: Higher-order, low-boilerplate free monads.
2019-04-10 23:27:25 +03:00
category: Language
2019-02-13 23:52:56 +03:00
2021-06-25 20:26:27 +03:00
description: Please see the README on GitHub at <https://github.com/polysemy-research/polysemy#readme>
2019-02-13 23:52:56 +03:00
dependencies:
- base >= 4.9 && < 5
- containers >= 0.5 && < 0.7
- mtl >= 2.2.2 && < 3
- syb >= 0.7 && < 0.8
- stm >= 2 && < 3
- template-haskell >= 2.12.0.0 && < 3
2023-09-16 14:58:07 +03:00
- th-abstraction >= 0.3.1.0 && < 0.7
2023-04-06 21:22:42 +03:00
- transformers >= 0.5.2.0 && < 0.7
2020-03-10 10:35:34 +03:00
- first-class-families >= 0.5.0.0 && < 0.9
- unagi-chan >= 0.4.0.0 && < 0.5
- async >= 2.2 && < 3
- type-errors >= 0.2.0.0
2019-02-13 23:52:56 +03:00
2019-10-28 19:25:30 +03:00
custom-setup:
dependencies:
- base >= 4.9 && < 5
2023-04-09 15:07:06 +03:00
- Cabal <3.11
2019-10-28 19:25:30 +03:00
- cabal-doctest >=1.0.6 && <1.1
2019-04-20 13:57:56 +03:00
default-extensions:
2021-12-02 20:32:27 +03:00
- BlockArguments
2019-04-20 13:57:56 +03:00
- DataKinds
- DeriveFunctor
- FlexibleContexts
- GADTs
- LambdaCase
- PolyKinds
- RankNTypes
- ScopedTypeVariables
- StandaloneDeriving
- TypeApplications
- TypeOperators
- TypeFamilies
- UnicodeSyntax
when:
- condition: impl(ghc < 8.6)
default-extensions:
- MonadFailDesugaring
- TypeInType
2019-02-13 23:52:56 +03:00
library:
ghc-options: -Wall
2019-02-13 23:52:56 +03:00
source-dirs: src
other-modules: Polysemy.Internal.PluginLookup
2020-10-23 12:00:23 +03:00
generated-other-modules:
- Paths_polysemy
2019-03-20 16:53:22 +03:00
2019-03-18 04:03:23 +03:00
when:
- condition: impl(ghc < 8.2.2)
dependencies:
- unsupported-ghc-version > 1 && < 1
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
- inspection-testing >= 0.4.2 && < 0.6
2019-05-18 18:42:14 +03:00
- hspec >= 2.6.0 && < 3
2023-09-01 02:23:33 +03:00
- doctest >= 0.16.0.1 && < 0.23
2022-10-17 00:12:00 +03:00
- hspec-discover >= 2.0
generated-other-modules:
- Build_doctests
2019-02-22 03:34:06 +03:00