-
Notifications
You must be signed in to change notification settings - Fork 0
/
int-interval-map.cabal
87 lines (82 loc) · 2.12 KB
/
int-interval-map.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
77
78
79
80
81
82
83
84
85
86
87
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.34.4.
--
-- see: https://github.com/sol/hpack
--
-- hash: a6fd4a2bc6feee2444e88bd5e1d7922a8a860bdf846ee75842b6d97fd876b9a9
name: int-interval-map
version: 0.0.1.0
synopsis: Interval map
description: Interval map with support for overlapping intervals
category: Data
homepage: https://github.com/ngless-toolkit/interval-to-int#readme
bug-reports: https://github.com/ngless-toolkit/interval-to-int/issues
author: Luis Pedro Coelho
maintainer: luis@luispedro.org
license: MIT
license-file: COPYING
build-type: Simple
extra-source-files:
README.md
ChangeLog
source-repository head
type: git
location: https://github.com/ngless-toolkit/interval-to-int
library
exposed-modules:
Data.IntervalIntMap
other-modules:
Data.IntervalIntMap.Internal.GrowableVector
Data.IntervalIntMap.Internal.IntervalIntIntMap
hs-source-dirs:
./
default-extensions:
BangPatterns
OverloadedStrings
LambdaCase
TupleSections
CPP
ghc-options: -Wall -Wcompat -fwarn-tabs -fno-warn-missing-signatures -O2
build-depends:
base >=4.12 && <4.16
, containers
, deepseq
, either
, primitive
, vector
, vector-algorithms
default-language: Haskell2010
test-suite interval-int-map-test
type: exitcode-stdio-1.0
main-is: Tests.hs
other-modules:
Data.IntervalIntMap
Data.IntervalIntMap.Internal.GrowableVector
Data.IntervalIntMap.Internal.IntervalIntIntMap
Paths_int_interval_map
hs-source-dirs:
./
./tests
default-extensions:
BangPatterns
OverloadedStrings
LambdaCase
TupleSections
CPP
ghc-options: -Wall -Wcompat -fwarn-tabs -fno-warn-missing-signatures -O2
cpp-options: -DIS_BUILDING_TEST
build-depends:
base >=4.12 && <4.16
, containers
, deepseq
, either
, hedgehog
, primitive
, tasty
, tasty-hedgehog
, tasty-hunit
, tasty-quickcheck
, tasty-th
, vector
, vector-algorithms
default-language: Haskell2010