2021-05-29 07:22:14 +03:00
|
|
|
cabal-version: 2.4
|
|
|
|
build-type: Simple
|
2021-07-25 16:18:35 +03:00
|
|
|
name: effectful-core
|
2022-08-17 18:56:47 +03:00
|
|
|
version: 2.1.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
|
|
|
|
2022-07-15 02:48:05 +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
|
|
|
|
2022-07-13 23:05:35 +03:00
|
|
|
extra-source-files:
|
|
|
|
CHANGELOG.md
|
|
|
|
README.md
|
2021-06-11 16:26:44 +03:00
|
|
|
|
2022-08-03 16:27:44 +03:00
|
|
|
tested-with: GHC ==8.8.4 || ==8.10.7 || ==9.0.2 || ==9.2.4 || ==9.4.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
|
2022-02-25 20:39:09 +03:00
|
|
|
ghc-options: -Wall -Wcompat -Wno-unticked-promoted-constructors
|
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
|
2021-12-16 20:44:03 +03:00
|
|
|
DeriveGeneric
|
2021-05-29 07:22:14 +03:00
|
|
|
FlexibleContexts
|
|
|
|
FlexibleInstances
|
|
|
|
GADTs
|
2021-06-22 20:40:49 +03:00
|
|
|
GeneralizedNewtypeDeriving
|
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
|
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
|
|
|
|
|
2021-07-08 19:25:11 +03:00
|
|
|
library effectful-internal-utils
|
|
|
|
import: language
|
|
|
|
|
|
|
|
build-depends: base
|
|
|
|
|
|
|
|
hs-source-dirs: utils
|
|
|
|
c-sources: utils/utils.c
|
|
|
|
|
|
|
|
exposed-modules: Effectful.Internal.Utils
|
|
|
|
|
2021-05-29 07:22:14 +03:00
|
|
|
library
|
|
|
|
import: language
|
|
|
|
|
2021-06-19 01:54:22 +03:00
|
|
|
ghc-options: -O2
|
|
|
|
|
2021-12-16 19:13:47 +03:00
|
|
|
build-depends: effectful-internal-utils
|
|
|
|
|
|
|
|
build-depends: base >= 4.13 && < 5
|
2021-12-16 19:55:07 +03:00
|
|
|
, containers >= 0.6
|
2021-12-16 19:13:47 +03:00
|
|
|
, exceptions >= 0.10.4
|
|
|
|
, monad-control >= 1.0.3
|
|
|
|
, primitive >= 0.7.3.0
|
|
|
|
, transformers-base >= 0.4.6
|
|
|
|
, unliftio-core >= 0.2.0.1
|
2021-05-29 07:22:14 +03:00
|
|
|
|
|
|
|
hs-source-dirs: src
|
|
|
|
|
2021-12-16 19:13:47 +03:00
|
|
|
exposed-modules: Effectful
|
|
|
|
Effectful.Dispatch.Dynamic
|
2021-12-04 17:05:58 +03:00
|
|
|
Effectful.Dispatch.Static
|
2022-02-12 02:01:11 +03:00
|
|
|
Effectful.Dispatch.Static.Primitive
|
|
|
|
Effectful.Dispatch.Static.Unsafe
|
2021-07-12 21:45:32 +03:00
|
|
|
Effectful.Error.Dynamic
|
2022-01-10 22:19:35 +03:00
|
|
|
Effectful.Error.Static
|
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
|
2021-07-08 19:25:11 +03:00
|
|
|
Effectful.Internal.Unlift
|
2021-07-26 18:03:34 +03:00
|
|
|
Effectful.Prim
|
2021-07-13 14:35:34 +03:00
|
|
|
Effectful.Reader.Dynamic
|
2022-01-10 22:19:35 +03:00
|
|
|
Effectful.Reader.Static
|
2021-06-13 20:57:30 +03:00
|
|
|
Effectful.State.Dynamic
|
2022-01-10 22:19:35 +03:00
|
|
|
Effectful.State.Static.Local
|
|
|
|
Effectful.State.Static.Shared
|
2021-06-26 17:03:21 +03:00
|
|
|
Effectful.Writer.Dynamic
|
2022-01-10 22:19:35 +03:00
|
|
|
Effectful.Writer.Static.Local
|
|
|
|
Effectful.Writer.Static.Shared
|
2021-05-29 07:22:14 +03:00
|
|
|
|
2021-07-25 16:18:35 +03:00
|
|
|
reexported-modules: Effectful.Internal.Utils
|