Use bytestring for expected error messages
[git-rebase2.git] / git-rehi.cabal
blobe6aa41aa252a1ab0f96db6aafa46596404ec07cb
1 name:                git-rehi
2 version:             0.6.0
3 synopsis:            Initial project template from stack
4 description:         Please see README.md
5 homepage:            http://github.com/max630/git-rehi#readme
6 license:             GPL-2
7 license-file:        LICENSE
8 author:              Max Kirillov
9 maintainer:          max@max630.net
10 category:            Git
11 build-type:          Simple
12 -- extra-source-files:
13 cabal-version:       >=1.10
15 executable git-rehi
16   hs-source-dirs:      app
17   main-is:             Rehi.hs
18   other-modules:       Rehi.Utils
19                        , Rehi.ArgList
20                        , Rehi.Regex
21                        , Rehi.GitTypes
22                        , Rehi.GitCommands
23                        , Rehi.IO
24   ghc-options:         -threaded -rtsopts -with-rtsopts=-N -main-is Rehi.main
25   build-depends:       base
26                        , bytestring
27                        , containers
28                        , HUnit
29                        , exceptions
30                        , mtl
31                        , process
32                        , transformers
33                        , directory
34                        , text
35   if os(windows)
36     build-depends:     regex-pcre-builtin
37   else
38     build-depends:     regex-pcre
39   default-language:    Haskell2010
41 -- executable git-rehi-test
42 --   hs-source-dirs:      app
43 --   main-is:             Test.hs
44 --   ghc-options:         -threaded -rtsopts -with-rtsopts=-N
45 --   build-depends:       base
46 --                        , transformers
47 --                        , directory
48 --   default-language:    Haskell2010