-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtype-search.cabal
36 lines (34 loc) · 1.09 KB
/
type-search.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
cabal-version: >=1.10
name: type-search
version: 0.1.0.0
license: BSD-3-Clause
license-file: LICENSE
author: Brian McKenna
maintainer: [email protected]
build-type: Simple
extra-source-files: CHANGELOG.md
library
build-depends: base >=4.13 && <4.17
, lens
, transformers
, containers
, streamly
, exceptions
, equivalence
, prettyprinter
exposed-modules: Search
, Search.Hoogle
, Search.Structured
hs-source-dirs: src
default-language: Haskell2010
test-suite type-search-tests
build-depends: type-search
, base
, hedgehog
, streamly
, transformers
, containers
main-is: Main.hs
hs-source-dirs: test
default-language: Haskell2010
type: exitcode-stdio-1.0