effectful/effectful-core/effectful-core.cabal

113 lines
4.1 KiB
Plaintext
Raw Normal View History

2024-01-25 03:21:20 +03:00
cabal-version: 3.0
2021-05-29 07:22:14 +03:00
build-type: Simple
name: effectful-core
version: 2.4.0.0
2021-05-29 07:22:14 +03:00
license: BSD-3-Clause
license-file: LICENSE
category: Control
maintainer: andrzej@rybczak.net
author: Andrzej Rybczak
2021-06-20 22:37:41 +03:00
synopsis: An easy to use, performant extensible effects library.
2021-05-29 07:22:14 +03:00
description:
An easy to use, performant extensible effects library with seamless
integration with the existing Haskell ecosystem.
.
This library provides core definitions with a minimal dependency
footprint. See the @<https://hackage.haskell.org/package/effectful effectful>@
package for the "batteries-included" variant.
2021-05-29 07:22:14 +03:00
extra-source-files:
CHANGELOG.md
README.md
2021-06-11 16:26:44 +03:00
2024-04-28 07:17:24 +03:00
tested-with: GHC == { 8.10.7, 9.0.2, 9.2.8, 9.4.8, 9.6.5, 9.8.2, 9.10.1 }
2021-05-29 07:22:14 +03:00
2022-05-29 06:05:13 +03:00
bug-reports: https://github.com/haskell-effectful/effectful/issues
2021-05-29 07:22:14 +03:00
source-repository head
type: git
2022-05-29 06:05:13 +03:00
location: https://github.com/haskell-effectful/effectful.git
2021-05-29 07:22:14 +03:00
common language
ghc-options: -Wall -Wcompat -Wno-unticked-promoted-constructors
2024-01-25 03:21:20 +03:00
-Werror=prepositive-qualified-module
2021-05-29 07:22:14 +03:00
default-language: Haskell2010
default-extensions: BangPatterns
ConstraintKinds
DataKinds
2021-07-11 00:44:20 +03:00
DeriveFunctor
DeriveGeneric
DerivingStrategies
2021-05-29 07:22:14 +03:00
FlexibleContexts
FlexibleInstances
GADTs
2021-06-22 20:40:49 +03:00
GeneralizedNewtypeDeriving
2024-01-25 03:21:20 +03:00
ImportQualifiedPost
2021-05-29 07:22:14 +03:00
LambdaCase
2021-06-13 20:57:30 +03:00
MultiParamTypeClasses
2021-07-01 16:17:06 +03:00
NoStarIsType
PolyKinds
2021-05-29 07:22:14 +03:00
RankNTypes
RoleAnnotations
ScopedTypeVariables
2021-07-11 00:44:20 +03:00
StandaloneDeriving
2021-05-29 07:22:14 +03:00
TupleSections
TypeApplications
TypeFamilies
TypeOperators
library
import: language
ghc-options: -O2
2024-01-25 03:21:20 +03:00
build-depends: base >= 4.14 && < 5
2021-12-16 19:55:07 +03:00
, containers >= 0.6
, deepseq >= 1.2
, exceptions >= 0.10.4
, monad-control >= 1.0.3
, primitive >= 0.7.3.0
, safe-exceptions >= 0.1.7.2
2024-09-05 20:08:23 +03:00
, strict-mutable-base >= 1.1.0.0
, transformers-base >= 0.4.6
, unliftio-core >= 0.2.0.1
2021-05-29 07:22:14 +03:00
hs-source-dirs: src
2023-02-15 00:48:37 +03:00
if impl(ghc < 9)
c-sources: cbits/utils.c
exposed-modules: Effectful
Effectful.Dispatch.Dynamic
Effectful.Dispatch.Static
Effectful.Dispatch.Static.Primitive
Effectful.Dispatch.Static.Unsafe
2021-07-12 21:45:32 +03:00
Effectful.Error.Dynamic
Effectful.Error.Static
Effectful.Exception
2021-06-30 20:01:39 +03:00
Effectful.Fail
2021-06-15 21:59:12 +03:00
Effectful.Internal.Effect
2021-06-13 20:57:30 +03:00
Effectful.Internal.Env
Effectful.Internal.Monad
Effectful.Internal.Unlift
Effectful.Internal.Utils
Effectful.Labeled
Effectful.Labeled.Error
Effectful.Labeled.Reader
Effectful.Labeled.State
Effectful.Labeled.Writer
Effectful.NonDet
2021-07-26 18:03:34 +03:00
Effectful.Prim
Effectful.Provider
2023-12-05 02:56:10 +03:00
Effectful.Provider.List
2021-07-13 14:35:34 +03:00
Effectful.Reader.Dynamic
Effectful.Reader.Static
2021-06-13 20:57:30 +03:00
Effectful.State.Dynamic
Effectful.State.Static.Local
Effectful.State.Static.Shared
2021-06-26 17:03:21 +03:00
Effectful.Writer.Dynamic
Effectful.Writer.Static.Local
Effectful.Writer.Static.Shared