Skip to content
Snippets Groups Projects
shift.cabal 2.35 KiB
name:                shift
version:             0.0.0.2
synopsis:            A CHANGELOG generator
description:         Please see README.md
homepage:            https://phabricator.chromabits.com/diffusion/SHFT/
license:             Apache
license-file:        LICENSE
author:              Eduardo Trujillo
maintainer:          ed@chromabits.com
copyright:           2016 Eduardo Trujillo
category:            Git
build-type:          Simple
-- extra-source-files:
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  exposed-modules:     Shift
                     , Shift.CLI
                     , Shift.Generate
                     , Shift.Git
                     , Shift.Parsers
                     , Shift.Processing
                     , Shift.Rendering
                     , Shift.Server
                     , Shift.Types
                     , Shift.Utilities
                     , GitHub.UserSearch
  build-depends:       base >= 4.7 && < 5
                     , versions
                     , text
                     , hgit
                     , containers
                     , megaparsec
                     , unordered-containers
                     , string-conversions
                     , bytestring
                     , data-default
                     , lens
                     , transformers
                     , process
                     , optparse-applicative
                     , mtl
                     , http-client
                     , http-client-tls
                     , github
                     , aeson
                     , io-memoize
                     , vector
                     , exceptions
                     , semigroups
                     , cmark-gfm
                     , scotty
  default-language:    Haskell2010

executable shift
  hs-source-dirs:      app
  main-is:             Main.hs
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N
  build-depends:       base
                     , shift
  default-language:    Haskell2010

test-suite shift-test
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             Spec.hs
  build-depends:       base
                     , shift
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N
  default-language:    Haskell2010

source-repository head
  type:     git
  location: https://github.com/githubuser/shift