-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.yaml
57 lines (54 loc) · 1.15 KB
/
package.yaml
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
name: int-interval-map
version: '0.0.1.0'
synopsis: Interval map
category: Data
description: 'Interval map with support for overlapping intervals'
author: Luis Pedro Coelho
maintainer: luis@luispedro.org
license: MIT
license-file: COPYING
github: ngless-toolkit/interval-to-int
default-extensions:
- BangPatterns
- OverloadedStrings
- LambdaCase
- TupleSections
- CPP
dependencies:
- base >= 4.12 && < 4.16
- containers
- deepseq
- either
- primitive
- vector
- vector-algorithms
extra-source-files:
- README.md
- ChangeLog
ghc-options:
- -Wall
- -Wcompat
- -fwarn-tabs
- -fno-warn-missing-signatures
- -O2
library:
source-dirs: ./
exposed-modules:
- Data.IntervalIntMap
other-modules:
- Data.IntervalIntMap.Internal.GrowableVector
- Data.IntervalIntMap.Internal.IntervalIntIntMap
tests:
interval-int-map-test:
source-dirs:
- .
- ./tests
main: Tests.hs
cpp-options: -DIS_BUILDING_TEST
dependencies:
- tasty
- tasty-th
- tasty-hunit
- tasty-hedgehog
- tasty-quickcheck
- hedgehog