effectful/effectful-core/effectful-core.cabal

107 lines
3.5 KiB
Plaintext
Raw Normal View History

2021-05-29 07:22:14 +03:00
cabal-version: 2.4
build-type: Simple
name: effectful-core
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
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
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
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
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
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
ghc-options: -O2
build-depends: effectful-internal-utils
build-depends: base >= 4.13 && < 5
2021-12-16 19:55:07 +03:00
, containers >= 0.6
, 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
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
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
2021-07-26 18:03:34 +03:00
Effectful.Prim
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
2021-05-29 07:22:14 +03:00
reexported-modules: Effectful.Internal.Utils