-
Notifications
You must be signed in to change notification settings - Fork 1
/
euler-tour-tree.cabal
76 lines (64 loc) · 1.78 KB
/
euler-tour-tree.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
74
75
76
name: euler-tour-tree
version: 0.1.1.0
synopsis: Euler tour trees
-- description: Cf README file
homepage: https://github.com/k0ral/euler-tour-tree
license: PublicDomain
author: [email protected]
maintainer: [email protected]
category: Data
build-type: Simple
-- extra-source-files: ChangeLog.md
cabal-version: >=1.10
source-repository head
type: git
location: git://github.com/k0ral/euler-tour-tree.git
flag enable-hlint-test
description: Enable hlint test-suite
manual: True
default: False
library
exposed-modules:
Data.EulerTourTree
-- Data.EulerTourTree.Sized
build-depends: base >=4.11 && <5, containers, fingertree, mtl, parser-combinators, transformers, Unique
hs-source-dirs: src
default-language: Haskell2010
test-suite unit-tests
type: exitcode-stdio-1.0
main-is: UnitTests.hs
build-depends:
euler-tour-tree -any,
base >=4.9,
containers,
tasty -any,
tasty-hunit -any
default-language: Haskell2010
hs-source-dirs: test
test-suite property-tests
type: exitcode-stdio-1.0
main-is: PropertyTests.hs
build-depends:
euler-tour-tree -any,
base >=4.9,
containers,
keys,
QuickCheck,
-- quickcheck-instances -any,
sequence,
tasty -any,
tasty-quickcheck -any
default-language: Haskell2010
hs-source-dirs: test
test-suite hlint-tests
if flag(enable-hlint-test)
buildable: True
else
buildable: False
type: exitcode-stdio-1.0
main-is: HLint.hs
build-depends:
base >=4.9,
hlint -any
default-language: Haskell2010
hs-source-dirs: test