packages feed

run-st-0.1.3.2: run-st.cabal

cabal-version: 2.2
name: run-st
version: 0.1.3.2
synopsis: runST without boxing penalty
description:
  This package provides specializations of `runST` that avoid a needless
  data-constructor allocation for the returned value.
  If <https://gitlab.haskell.org/ghc/ghc/issues/15127 issue 15127> is
  resolved, this package will no longer be necessary.

homepage: https://github.com/andrewthad/run-st
bug-reports: https://github.com/andrewthad/run-st/issues
license: BSD-3-Clause
license-file: LICENSE
author: Andrew Martin
maintainer: andrew.thaddeus@gmail.com
copyright: 2019 Andrew Martin
category: Data
extra-source-files: CHANGELOG.md

library
  exposed-modules: Control.Monad.ST.Run
  build-depends:
    , base >=4.12 && <5
    , primitive >=0.7 && <0.10
    , primitive-unlifted >=2.1
  hs-source-dirs: src
  default-language: Haskell2010
  ghc-options: -O2 -Wall