-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathixset.cabal
More file actions
51 lines (44 loc) · 1.56 KB
/
ixset.cabal
File metadata and controls
51 lines (44 loc) · 1.56 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
Name: ixset
Version: 1.1.1.3
Synopsis: Efficient relational queries on Haskell sets.
Description:
Create and query sets that are indexed by multiple indices.
License: BSD3
License-file: COPYING
Author: Happstack team, HAppS LLC
Maintainer: Happstack team <happs@googlegroups.com>
homepage: http://happstack.com
Category: Data Structures
Build-Type: Simple
Cabal-Version: >= 1.10
tested-with: GHC == 9.4.8, GHC == 9.6.6, GHC == 9.8.2, GHC == 9.8.4, GHC == 9.10.1, GHC == 9.12.1
source-repository head
type: git
location: https://github.com/Happstack/ixset.git
Library
Build-Depends: base >=4.7 && < 5, syb
if !impl(ghc >= 8.0)
build-depends: semigroups >= 0.18 && < 0.21
Build-Depends: containers >=0.5.5.1,
safecopy,
template-haskell,
syb-with-class >=0.6.1.15
hs-source-dirs: src
Exposed-modules:
Data.IxSet
Data.IxSet.Ix
ghc-options: -Wall -fno-warn-unused-do-bind
default-language: Haskell2010
Test-Suite test-ixset
Default-Language: Haskell2010
type: exitcode-stdio-1.0
main-is: Test.hs
other-modules: Data.IxSet.Tests
hs-source-dirs: tests
build-depends: base,
Cabal >= 1.10,
containers,
HUnit,
ixset,
QuickCheck,
random