packages feed

ghc-usage-0.1.0.1: ghc-usage.cabal

name:                ghc-usage
version:             0.1.0.1
license:             BSD3
license-file:        LICENSE
author:              Edward Z. Yang
maintainer:          ezyang@cs.stanford.edu
synopsis:            Print minimal export lists
category:            Development
bug-reports:         https://github.com/ezyang/ghc-usage/issues
description:         A frontend plugin for computing the minimal export list
                     of a module or signature within a package.  This can
                     be used in conjunction with Backpack to easily determine
                     the true set of identifiers which are required from a
                     signature, so that the requirement can be pared down
                     to precisely what is required.
build-type:          Simple
cabal-version:       >=1.10

extra-source-files:  README.md

source-repository head
    type:     git
    location: https://github.com/ezyang/ghc-usage

library
  exposed-modules:     GhcUsage
  build-depends:       base >= 4.10 && < 4.11,
                       ghc  >= 8.1  && < 8.3,
                       containers
  default-language:    Haskell2010

executable ghc-usage
  main-is:             GhcUsageWrapper.hs
  build-depends:       base, ghc-paths, unix
  default-language:    Haskell2010