-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinterval-set.cabal
More file actions
32 lines (28 loc) · 1.03 KB
/
interval-set.cabal
File metadata and controls
32 lines (28 loc) · 1.03 KB
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
name: interval-set
version: 0.2.0.0
synopsis: Container for Sets of Disjoint Integer Intervals
license: BSD3
license-file: LICENSE
author: Ian Milligan
maintainer: ianmllgn@gmail.com
category: Data
build-type: Simple
cabal-version: >=1.10
library
exposed-modules: Data.Interval, Data.IntervalSet
build-depends: base >=4.6 && <4.7, lens >= 4.0 && < 4.2
default-language: Haskell2010
Test-Suite tasty
type: exitcode-stdio-1.0
hs-source-dirs: tests
main-is: Test.hs
build-depends: base, interval-set, tasty, smallcheck, tasty-smallcheck
default-language: Haskell2010
default-extensions: FlexibleInstances, MultiParamTypeClasses
Benchmark criterion
type: exitcode-stdio-1.0
hs-source-dirs: benchmarks
main-is: Benchmark.hs
build-depends: base, interval-set, criterion, random-fu, deepseq
default-language: Haskell2010
default-extensions: ScopedTypeVariables