polysemy/polysemy.cabal

208 lines
5.8 KiB
Plaintext
Raw Normal View History

2019-10-28 19:25:30 +03:00
cabal-version: 1.24
2019-04-11 00:23:24 +03:00
2020-09-08 15:18:38 +03:00
-- This file has been generated from package.yaml by hpack version 0.34.2.
2019-04-11 00:23:24 +03:00
--
-- see: https://github.com/sol/hpack
--
2020-09-08 15:18:38 +03:00
-- hash: 6f6080a4e65486639af03142e56fdf232ed5c7747e77c24b378b0bb8033a079d
2019-04-11 00:23:24 +03:00
name: polysemy
version: 1.3.0.0
2019-04-11 00:23:24 +03:00
synopsis: Higher-order, low-boilerplate, zero-cost free monads.
description: Please see the README on GitHub at <https://github.com/isovector/polysemy#readme>
category: Language
2020-09-08 15:18:38 +03:00
homepage: https://github.com/polysemy-research/polysemy#readme
bug-reports: https://github.com/polysemy-research/polysemy/issues
2019-04-11 00:23:24 +03:00
author: Sandy Maguire
maintainer: sandy@sandymaguire.me
copyright: 2019 Sandy Maguire
license: BSD3
license-file: LICENSE
build-type: Custom
2019-04-11 00:23:24 +03:00
extra-source-files:
README.md
ChangeLog.md
source-repository head
type: git
2020-09-08 15:18:38 +03:00
location: https://github.com/polysemy-research/polysemy
2019-04-11 00:23:24 +03:00
2019-10-28 19:25:30 +03:00
custom-setup
setup-depends:
Cabal
, base >=4.9 && <5
, cabal-doctest >=1.0.6 && <1.1
2019-04-11 00:23:24 +03:00
flag dump-core
description: Dump HTML for the core generated by GHC during compilation
manual: True
default: False
flag error-messages
description: Provide custom error messages
manual: True
default: True
library
exposed-modules:
Polysemy
Polysemy.Async
Polysemy.AtomicState
Polysemy.Bundle
Polysemy.Embed
Polysemy.Embed.Type
2019-04-11 00:23:24 +03:00
Polysemy.Error
Polysemy.Fail
Polysemy.Fail.Type
Polysemy.Final
2019-04-11 00:23:24 +03:00
Polysemy.Fixpoint
Polysemy.Input
Polysemy.Internal
Polysemy.Internal.Bundle
2019-04-11 00:23:24 +03:00
Polysemy.Internal.Combinators
Polysemy.Internal.CustomErrors
Polysemy.Internal.CustomErrors.Redefined
2019-04-11 00:23:24 +03:00
Polysemy.Internal.Fixpoint
Polysemy.Internal.Forklift
Polysemy.Internal.Kind
2019-04-11 00:23:24 +03:00
Polysemy.Internal.NonDet
Polysemy.Internal.Strategy
2019-04-11 00:23:24 +03:00
Polysemy.Internal.Tactics
Polysemy.Internal.TH.Common
2019-04-11 00:23:24 +03:00
Polysemy.Internal.TH.Effect
Polysemy.Internal.Union
Polysemy.Internal.Writer
2019-04-14 22:00:29 +03:00
Polysemy.IO
Polysemy.Law
Polysemy.Membership
2019-04-11 00:23:24 +03:00
Polysemy.NonDet
Polysemy.Output
Polysemy.Reader
Polysemy.Resource
Polysemy.State
Polysemy.State.Law
2019-11-01 21:23:01 +03:00
Polysemy.Tagged
2019-04-11 00:23:24 +03:00
Polysemy.Trace
Polysemy.View
2019-04-11 00:23:24 +03:00
Polysemy.Writer
other-modules:
Polysemy.Internal.PluginLookup
2019-04-11 00:23:24 +03:00
hs-source-dirs:
src
default-extensions: DataKinds DeriveFunctor FlexibleContexts GADTs LambdaCase PolyKinds RankNTypes ScopedTypeVariables StandaloneDeriving TypeApplications TypeOperators TypeFamilies UnicodeSyntax
ghc-options: -Wall
2019-04-11 00:23:24 +03:00
build-depends:
QuickCheck >=2.11.3 && <3
, async >=2.2 && <3
, base >=4.9 && <5
, containers >=0.5 && <0.7
2020-03-10 10:35:34 +03:00
, first-class-families >=0.5.0.0 && <0.9
2019-05-18 18:42:14 +03:00
, mtl >=2.2.2 && <3
, stm >=2 && <3
, syb >=0.7 && <0.8
, template-haskell >=2.12.0.0 && <3
, th-abstraction >=0.3.1.0 && <0.5
, transformers >=0.5.2.0 && <0.6
, type-errors >=0.2.0.0
, type-errors-pretty >=0.0.0.0 && <0.1
, unagi-chan >=0.4.0.0 && <0.5
if impl(ghc < 8.6)
default-extensions: MonadFailDesugaring TypeInType
2019-04-11 00:23:24 +03:00
if flag(dump-core)
ghc-options: -fplugin=DumpCore -fplugin-opt=DumpCore:core-html
2019-04-11 00:23:24 +03:00
build-depends:
dump-core
if impl(ghc < 8.2.2)
build-depends:
unsupported-ghc-version >1 && <1
2019-04-11 00:23:24 +03:00
if flag(error-messages)
cpp-options: -DCABAL_SERIOUSLY_CMON_MATE
else
cpp-options: -DNO_ERROR_MESSAGES
2019-04-11 00:23:24 +03:00
default-language: Haskell2010
test-suite polysemy-test
type: exitcode-stdio-1.0
main-is: Main.hs
other-modules:
2019-05-27 08:16:14 +03:00
AlternativeSpec
AsyncSpec
2019-06-12 16:36:08 +03:00
BracketSpec
DoctestSpec
ErrorSpec
FailSpec
FinalSpec
FixpointSpec
2019-04-11 00:23:24 +03:00
FusionSpec
HigherOrderSpec
InspectorSpec
InterceptSpec
KnownRowSpec
LawsSpec
2019-04-20 13:57:56 +03:00
OutputSpec
ThEffectSpec
TypeErrors
ViewSpec
WriterSpec
2019-04-11 00:23:24 +03:00
Paths_polysemy
hs-source-dirs:
test
2019-04-20 13:57:56 +03:00
default-extensions: DataKinds DeriveFunctor FlexibleContexts GADTs LambdaCase PolyKinds RankNTypes ScopedTypeVariables StandaloneDeriving TypeApplications TypeOperators TypeFamilies UnicodeSyntax
2019-04-11 00:23:24 +03:00
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-tool-depends:
hspec-discover:hspec-discover >=2.0
2019-04-11 00:23:24 +03:00
build-depends:
QuickCheck >=2.11.3 && <3
, async >=2.2 && <3
, base >=4.9 && <5
, containers >=0.5 && <0.7
, doctest >=0.16.0.1 && <0.17
2020-03-10 10:35:34 +03:00
, first-class-families >=0.5.0.0 && <0.9
2019-05-18 18:42:14 +03:00
, hspec >=2.6.0 && <3
, inspection-testing >=0.4.2 && <0.5
2019-05-18 18:42:14 +03:00
, mtl >=2.2.2 && <3
2019-04-11 00:23:24 +03:00
, polysemy
, stm >=2 && <3
, syb >=0.7 && <0.8
, template-haskell >=2.12.0.0 && <3
, th-abstraction >=0.3.1.0 && <0.5
, transformers >=0.5.2.0 && <0.6
, type-errors >=0.2.0.0
, type-errors-pretty >=0.0.0.0 && <0.1
, unagi-chan >=0.4.0.0 && <0.5
if impl(ghc < 8.6)
default-extensions: MonadFailDesugaring TypeInType
2019-04-11 00:23:24 +03:00
default-language: Haskell2010
benchmark polysemy-bench
type: exitcode-stdio-1.0
main-is: countDown.hs
other-modules:
Poly
Paths_polysemy
hs-source-dirs:
bench
2019-04-20 13:57:56 +03:00
default-extensions: DataKinds DeriveFunctor FlexibleContexts GADTs LambdaCase PolyKinds RankNTypes ScopedTypeVariables StandaloneDeriving TypeApplications TypeOperators TypeFamilies UnicodeSyntax
2019-04-11 00:23:24 +03:00
build-depends:
QuickCheck >=2.11.3 && <3
, async >=2.2 && <3
, base >=4.9 && <5
, containers >=0.5 && <0.7
2019-04-11 00:23:24 +03:00
, criterion
2020-03-10 10:35:34 +03:00
, first-class-families >=0.5.0.0 && <0.9
2019-04-11 00:23:24 +03:00
, free
, freer-simple
, mtl
, polysemy
, stm >=2 && <3
, syb >=0.7 && <0.8
, template-haskell >=2.12.0.0 && <3
, th-abstraction >=0.3.1.0 && <0.5
, transformers >=0.5.2.0 && <0.6
, type-errors >=0.2.0.0
, type-errors-pretty >=0.0.0.0 && <0.1
, unagi-chan >=0.4.0.0 && <0.5
if impl(ghc < 8.6)
default-extensions: MonadFailDesugaring TypeInType
2019-04-11 00:23:24 +03:00
default-language: Haskell2010