-
Notifications
You must be signed in to change notification settings - Fork 0
/
breadthw.cabal
73 lines (69 loc) · 2.79 KB
/
breadthw.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
name: breadthw
version: 0.1.0.0
synopsis: Walk files/dirs breadth-first
description: Please see README.md
homepage: https://github.com/lbonn/breadthw#readme
license: BSD3
author: lbonn
copyright: 2016 lbonn
category: Shell
build-type: Simple
cabal-version: >=1.10
extra-source-files: README.md
library
hs-source-dirs: src
exposed-modules: Breadthw
, Breadthw.ZipTree
ghc-options: -W -Wall
build-depends: base >= 4.7 && < 5
, containers >= 0.5.7 && < 0.6
, directory >= 1.3.0 && < 1.4
, mtl >= 2.2.1 && < 2.3
, pipes >= 4.1.0 && < 4.4
, protolude >= 0.1.6 && < 0.2
, text >= 1.2.2.1 && < 1.3
, transformers >= 0.5.2.0 && < 0.6
default-language: Haskell2010
default-extensions: OverloadedStrings, NoImplicitPrelude
executable breadthw
hs-source-dirs: app
main-is: Main.hs
default-language: Haskell2010
build-depends: base >= 4.7 && < 5
, breadthw
, optparse-applicative >= 0.12.1 && < 0.14
, pipes >= 4.1.0 && < 4.4
, protolude >= 0.1.6 && < 0.2
, text >= 1.2.2.1 && < 1.3
default-extensions: OverloadedStrings, NoImplicitPrelude
test-suite breadthw-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
other-modules: Tree.Gen
build-depends: base >= 4.7 && < 5
, breadthw
, containers >= 0.5.7 && < 0.6
, protolude >= 0.1.6 && < 0.2
, QuickCheck >= 2.9.2 && < 2.10
, tasty >= 0.11.2 && < 0.12
, tasty-hunit >= 0.9.2 && < 0.10
, tasty-quickcheck >= 0.8.4 && < 0.9
, transformers >= 0.5.2.0 && < 0.6
ghc-options: -W -Wall -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010
default-extensions: OverloadedStrings, NoImplicitPrelude
benchmark breadthw-bench
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Bench.hs
other-modules: Tree.Gen
build-depends: base >= 4.7 && < 5
, protolude
, breadthw
, containers >= 0.5.7 && < 0.6
, criterion >= 1.1.4.0 && < 1.2.0.0
, QuickCheck >= 2.9.2 && < 2.10
ghc-options: -W -Wall -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010
default-extensions: OverloadedStrings, NoImplicitPrelude