packages feed

cmt-0.2.0.0: cmt.cabal

cabal-version: 1.12
name: cmt
version: 0.2.0.0
license: BSD3
license-file: LICENSE
copyright: Small Hadron Collider / Mark Wales
maintainer: mark@smallhadroncollider.com
author: Small Hadron Collider / Mark Wales
homepage: https://github.com/smallhadroncollider/cmt#readme
bug-reports: https://github.com/smallhadroncollider/cmt/issues
synopsis: Write consistent git commit messages
description:
    Please see the README on GitHub at <https://github.com/smallhadroncollider/cmt#readme>
category: Command Line Tools
build-type: Simple
extra-source-files:
    README.md

source-repository head
    type: git
    location: https://github.com/smallhadroncollider/cmt

library
    exposed-modules:
        Cmt
        Cmt.IO.Config
        Cmt.IO.Git
        Cmt.IO.Input
        Cmt.Output.Format
        Cmt.Parser.Config
        Cmt.Types.Config
    hs-source-dirs: src
    other-modules:
        Paths_cmt
    default-language: Haskell2010
    default-extensions: OverloadedStrings NoImplicitPrelude
    build-depends:
        attoparsec >=0.13.2.2 && <0.14,
        base >=4.7 && <5,
        classy-prelude >=1.5.0 && <1.6,
        directory >=1.3.3.0 && <1.4,
        filepath >=1.4.2.1 && <1.5,
        process >=1.6.3.0 && <1.7,
        text >=1.2.3.1 && <1.3

executable cmt
    main-is: Main.hs
    hs-source-dirs: app
    other-modules:
        Paths_cmt
    default-language: Haskell2010
    default-extensions: OverloadedStrings NoImplicitPrelude
    ghc-options: -threaded -rtsopts -with-rtsopts=-N
    build-depends:
        base >=4.7 && <5,
        classy-prelude >=1.5.0 && <1.6,
        cmt -any

test-suite cmt-test
    type: exitcode-stdio-1.0
    main-is: Spec.hs
    hs-source-dirs: test
    other-modules:
        Cmt.Parser.ConfigTest
        Paths_cmt
    default-language: Haskell2010
    default-extensions: OverloadedStrings NoImplicitPrelude
    ghc-options: -threaded -rtsopts -with-rtsopts=-N
    build-depends:
        base >=4.7 && <5,
        classy-prelude >=1.5.0 && <1.6,
        cmt -any,
        file-embed >=0.0.11 && <0.1,
        tasty ==1.2.*,
        tasty-discover >=4.2.1 && <4.3,
        tasty-expected-failure >=0.11.1.1 && <0.12,
        tasty-hunit >=0.10.0.1 && <0.11