-
Notifications
You must be signed in to change notification settings - Fork 2
/
stutter.cabal
62 lines (59 loc) · 1.94 KB
/
stutter.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
name: stutter
version: 0.1.0.2
synopsis: (Stutter Text|String)-Utterer
description: CLI regex-like string generator
homepage: https://github.com/nmattia/stutter#readme
license: MIT
license-file: LICENSE
author: Nicolas Mattia
maintainer: [email protected]
copyright: (c) 2018 Nicolas Mattia
category: Tools
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
library
hs-source-dirs: src/
ghc-options: -Wall
exposed-modules:
Stutter.Parser
Stutter.Producer
build-depends:
base < 5
, attoparsec
, bytestring
, conduit
, conduit-combinators
, conduit-extra
, exceptions
, mtl
, resourcet
, text
default-language: Haskell2010
executable stutter
main-is: Stutter.hs
hs-source-dirs: exe/
ghc-options: -threaded -rtsopts -with-rtsopts=-N1 -Wall
build-depends:
base < 5
, attoparsec
, conduit
, conduit-combinators
, optparse-applicative
, stutter
, text
default-language: Haskell2010
test-suite stutter-test
main-is: Main.hs
hs-source-dirs: test/
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall
type: exitcode-stdio-1.0
build-depends:
base
, attoparsec
, snipcheck >= 0.1.0.2
, stutter
, tasty
, tasty-ant-xml
, tasty-hunit
default-language: Haskell2010