packages feed

cabal-bounds-0.1.2: tests/goldenFiles/UpdateLowerOfLibrary.cabal

name: cabal-bounds
version: 0.1
cabal-version: >=1.9.2
build-type: Simple
license: BSD3
license-file: LICENSE
maintainer: daniel.trstenjak@gmail.com
synopsis: A command line program for managing the bounds/versions of the dependencies in a cabal file.
description: A command line program for managing the bounds/versions of the dependencies in a cabal file.
category: Utils
author: Daniel Trstenjak
data-dir: ""
 
source-repository head
    type: git
    location: https://github.com/dan-t/cabal-bounds
 
library
    build-depends: base >=4.6.0.1, cmdargs >=0.10.7, lens >=4.0.1,
                   pretty-show -any, strict >=0.3.2, Cabal >=1.18.1
    exposed-modules: CabalBounds.Args CabalBounds.Command
                     CabalBounds.Execute CabalBounds.Lenses
    exposed: True
    buildable: True
    hs-source-dirs: src
    other-modules: Paths_cabal_bounds CabalBounds.Args
                   CabalBounds.Command CabalBounds.Execute CabalBounds.Lenses
 
executable cabal-bounds
    build-depends: base >=3 && <5, cmdargs >=0.10.5 && <0.11,
                   lens -any, pretty-show -any, strict -any, Cabal -any
    main-is: Main.hs
    buildable: True
    cpp-options: -DCABAL
    hs-source-dirs: src
    other-modules: Paths_cabal_bounds CabalBounds.Args
                   CabalBounds.Command CabalBounds.Execute CabalBounds.Lenses
    ghc-options: -W
 
executable other-exe
    build-depends: base >=3 && <5, cmdargs >=0.10.5 && <0.11,
                   lens -any, pretty-show -any, strict -any, Cabal -any
    main-is: Main.hs
    buildable: True
    cpp-options: -DCABAL
    hs-source-dirs: src
    other-modules: Paths_cabal_bounds CabalBounds.Args
                   CabalBounds.Command CabalBounds.Execute CabalBounds.Lenses
    ghc-options: -W
 
test-suite some-test
    build-depends: base >=3 && <5, cmdargs >=0.10.5 && <0.11,
                   lens -any, pretty-show -any, strict -any, Cabal -any
    type: exitcode-stdio-1.0
    main-is: Main.hs
    buildable: True
    ghc-options: -W
test-suite other-test
    build-depends: base >=3 && <5, cmdargs >=0.10.5 && <0.11,
                   lens -any, pretty-show -any, strict -any, Cabal -any
    type: exitcode-stdio-1.0
    main-is: Main.hs
    buildable: True
    ghc-options: -W