-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathintern.cabal
57 lines (52 loc) · 1.66 KB
/
intern.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
name: intern
category: Data, Data Structures
version: 0.9.6
license: BSD3
cabal-version: >= 1.10
license-file: LICENSE
author: Edward A. Kmett
maintainer: Edward A. Kmett <[email protected]>
stability: experimental
homepage: http://github.com/ekmett/intern/
bug-reports: http://github.com/ekmett/intern/issues
copyright: Copyright (C) 2011-2014 Edward A. Kmett
build-type: Simple
tested-with: GHC == 8.0.2
, GHC == 8.2.2
, GHC == 8.4.4
, GHC == 8.6.5
, GHC == 8.8.4
, GHC == 8.10.7
, GHC == 9.0.2
, GHC == 9.2.8
, GHC == 9.4.8
, GHC == 9.6.6
, GHC == 9.8.4
, GHC == 9.10.1
, GHC == 9.12.1
synopsis: Efficient hash-consing for arbitrary data types
description: Efficient hash-consing for arbitrary data types.
extra-source-files: examples/Term.hs, CHANGELOG.markdown, README.markdown
source-repository head
type: git
location: git://github.com/ekmett/intern.git
library
build-depends:
base >= 4.9 && < 5,
bytestring >= 0.9 && < 0.13,
text >= 0.11 && < 2.2,
hashable >= 1.1 && < 1.6,
unordered-containers >= 0.2.1 && < 0.3,
array >= 0.3 && < 0.6
exposed-modules:
Data.Interned
Data.Interned.ByteString
Data.Interned.String
Data.Interned.Text
Data.Interned.IntSet
Data.Interned.Internal
Data.Interned.Internal.ByteString
Data.Interned.Internal.String
Data.Interned.Internal.Text
ghc-options: -Wall
default-language: Haskell2010