-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwhippet.cabal
38 lines (35 loc) · 1.1 KB
/
whippet.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
name: whippet
version: 0.1.0.0
synopsis: Fuzzy file finder
homepage: https://github.com/tjmw/whippet
license: MIT
license-file: LICENSE
author: Tom Wey
maintainer: [email protected]
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
library
build-depends: base >=4.7 && <4.8,
split,
regex-compat,
filemanip,
directory,
filepath,
options,
strings
default-language: Haskell2010
exposed-modules: Whippet
hs-source-dirs: library
executable whippet
build-depends: base >=4.7 && <4.8,
whippet
default-language: Haskell2010
hs-source-dirs: executable
main-is: Main.hs
test-suite hspec
build-depends: base, whippet, hspec == 2.1.*
default-language: Haskell2010
hs-source-dirs: test-suite
main-is: Spec.hs
type: exitcode-stdio-1.0