packages feed

tangle-0.1: tangle.cabal

cabal-version:       2.4
name:                tangle
version:             0.1
synopsis:            Heterogenous memoisation monad
description:         See README.md for details
bug-reports:         https://github.com/fumieval/tangle/issues
license:             BSD-3-Clause
license-file:        LICENSE
author:              Fumiaki Kinoshita
maintainer:          fumiexcel@gmail.com
copyright:           Copyright(c) 2021 Fumiaki Kinoshita
category:            Monad, Data Structures
extra-source-files:  CHANGELOG.md, README.md
tested-with:         GHC == 9.0.1, GHC == 8.10.7

source-repository head
  type: git
  location: https://github.com/fumieval/tangle.git

library
  exposed-modules:     Control.Monad.Tangle
  -- other-modules:
  -- other-extensions:
  build-depends:       base >= 4.12 && <5, transformers, barbies
  hs-source-dirs:      src
  default-language:    Haskell2010
  ghc-options: -Wall -Wcompat

executable weight
  hs-source-dirs: examples
  default-language:    Haskell2010
  ghc-options: -Wall -Wcompat
  build-depends:       base >= 4.12 && <5, transformers, barbies, lens, tangle
  main-is: weight.hs

executable mono
  hs-source-dirs: examples
  default-language:    Haskell2010
  ghc-options: -Wall -Wcompat
  build-depends:       base >= 4.12 && <5, transformers, containers
  main-is: mono.hs