-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstructural-traversal.cabal
38 lines (35 loc) · 1.36 KB
/
structural-traversal.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
name: structural-traversal
version: 0.1.1.1
synopsis: Initial project template from stack
description: Please see README.md
homepage: http://github.com/nboldi/structural-traversal#readme
license: BSD3
license-file: LICENSE
author: Boldizsár Németh
maintainer: nboldi@elte.com
category: Util
build-type: Simple
cabal-version: >=1.10
source-repository head
type: git
location: http://github.com/nboldi/structural-traversal
library
hs-source-dirs: ., src
exposed-modules: Data.StructuralTraversal
, Data.StructuralTraversal.Class
, Data.StructuralTraversal.Indexing
, Data.StructuralTraversal.Instances
, Data.StructuralTraversal.TH
build-depends: base >= 4.9 && < 5
, template-haskell >= 2.9.0.0
, mtl >= 2.2.1
default-language: Haskell2010
test-suite smart-traversal-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Example.hs
build-depends: base >= 4.9 && < 5
, HUnit >= 1.2 && < 1.4
, structural-traversal
, mtl >= 2.2.1
default-language: Haskell2010