-
Notifications
You must be signed in to change notification settings - Fork 0
/
hs-git-gsub.cabal
83 lines (73 loc) · 1.75 KB
/
hs-git-gsub.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
name: hs-git-gsub
version: 0.1.0.0
cabal-version: >=1.10
build-type: Simple
license: BSD3
license-file: LICENSE
copyright: MIT
maintainer: me@fujimuradaisuke.com
homepage: http://github.com/fujimura/hs-git-gsub#readme
synopsis: Initial project template from stack
description: Please see README.md
category: Web
author: Daisuke Fujimura
source-repository head
type: git
location: https://github.com/fujimura/hs-git-gsub
library
exposed-modules:
Cli
Lib
Types
build-depends:
base >=4.7 && <5
, bytestring
, directory
, filepath
, optparse-applicative
, process
, temporary
, text
, async
, regex-tdfa
, regex
default-language: Haskell2010
hs-source-dirs: src
other-modules: Paths_hs_git_gsub
executable git-gsub
main-is: Main.hs
build-depends:
base
, hs-git-gsub
default-language: Haskell2010
hs-source-dirs: app
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall -O2
test-suite hs-git-gsub-test
type: exitcode-stdio-1.0
main-is: Spec.hs
build-depends:
base
, directory
, filepath
, hs-git-gsub
, hspec >=2.0.0
, interpolate
, mockery
, process
, silently
, temporary
default-language: Haskell2010
build-tool-depends: hspec-discover:hspec-discover
hs-source-dirs: test
benchmark hs-git-gsub-benchmark
type: exitcode-stdio-1.0
main-is: Main.hs
build-depends:
base
, directory
, process
, criterion
, hs-git-gsub
hs-source-dirs: benchmark
default-language: Haskell2010
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall