packages feed

repl-alliance-0.1.0.1: repl-alliance.cabal

cabal-version:      3.0
name:               repl-alliance
version:            0.1.0.1
synopsis:           Currated set of plugins for REPL based development
description:        Currated set of plugins for REPL based development providing some IDE-like functionality
license:            BSD-3-Clause
license-file:       LICENSE
author:             Aaron Allen
maintainer:         aaronallen8455@gmail.com
category:           Development
build-type:         Simple
extra-doc-files:    CHANGELOG.md
                    README.md

source-repository head
  type: git
  location: https://github.com/aaronallen8455/repl-alliance

common warnings
    ghc-options: -Wall

library
    import:           warnings
    exposed-modules:  ReplAlliance
                      ShowWarnings
                      AutoSplit.Pattern
    -- other-modules:
    -- other-extensions:
    build-depends:    base < 4.23,
                      ghc >= 9.6 && < 9.13,
                      pinned-warnings,
                      auto-extract,
                      auto-export,
                      auto-split,
                      auto-import,
                      monoidal-plugins,
                      ghci-quickfix
    hs-source-dirs:   src
    default-language: GHC2021