packages feed

box-0.9.3.2: box.cabal

cabal-version: 3.0
name: box
version: 0.9.3.2
license: BSD-3-Clause
license-file: LICENSE
copyright: Tony Day (c) 2017
category: control
author: Tony Day
maintainer: tonyday567@gmail.com
homepage: https://github.com/tonyday567/box#readme
bug-reports: https://github.com/tonyday567/box/issues
synopsis: A profunctor effect system?
description:
    This might be a profunctor effect system, but is unlike all the others, so it's hard to say for sure.
build-type: Simple
tested-with:
    , GHC == 9.10.1
    , GHC == 9.8.2
    , GHC == 9.6.5
extra-doc-files:
    ChangeLog.md
    readme.md

source-repository head
    type: git
    location: https://github.com/tonyday567/box

common ghc-options-stanza
    ghc-options:
        -Wall
        -Wcompat
        -Wincomplete-record-updates
        -Wincomplete-uni-patterns
        -Wredundant-constraints

common ghc2021-stanza
    default-language: GHC2021

library
    import: ghc-options-stanza
    import: ghc2021-stanza
    hs-source-dirs: src
    build-depends:
        , async          >=2.2 && <2.3
        , base           >=4.7 && <5
        , bytestring     >=0.11.3 && <0.13
        , containers     >=0.6 && <0.8
        , contravariant  >=1.5 && <1.6
        , dlist          >=1.0 && <1.1
        , exceptions     >=0.10 && <0.11
        , kan-extensions >=5.2 && <5.3
        , mtl            >=2.2.2 && <2.4
        , profunctors    >=5.6.2 && <5.7
        , semigroupoids  >=5.3 && <6.1
        , stm            >=2.5.1 && <2.6
        , text           >=1.2 && <2.2
        , time           >=1.10 && <1.15
    exposed-modules:
        Box
        Box.Box
        Box.Codensity
        Box.Committer
        Box.Connectors
        Box.Emitter
        Box.Functor
        Box.IO
        Box.Queue
        Box.Time

test-suite doctests
    import: ghc2021-stanza
    main-is: doctests.hs
    hs-source-dirs: test
    build-depends:
        , base             >=4.14 && <5
        , doctest-parallel >=0.3 && <0.4
    ghc-options: -threaded
    type: exitcode-stdio-1.0