File: uuid.cabal

package info (click to toggle)
haskell-uuid 1.3.3-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 140 kB
  • sloc: haskell: 1,015; makefile: 2
file content (102 lines) | stat: -rw-r--r-- 3,094 bytes parent folder | download
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
Name: uuid
Version: 1.3.3
Copyright: (c) 2008-2013 Antoine Latter
Author: Antoine Latter
Maintainer: aslatter@gmail.com
License: BSD3
License-file: LICENSE

Category: Data
Build-Type: Simple
Cabal-Version: >= 1.8

Description:
 This library is useful for creating, comparing, parsing and
 printing Universally Unique Identifiers.
 See <http://en.wikipedia.org/wiki/UUID> for the general idea.

Synopsis: For creating, comparing, parsing and printing Universally Unique Identifiers

Homepage: http://projects.haskell.org/uuid/
Bug-Reports: mailto:aslatter@gmail.com

Extra-Source-Files:
     CHANGES
     CONTRIBUTORS


Library
 Build-Depends: base >=3 && < 5,
                binary >= 0.4 && < 0.8,
                bytestring >= 0.9 && < 1.1,
                cryptohash >= 0.7 && < 0.12,
                deepseq == 1.3.*,
                hashable (>= 1.1.1.0 && < 1.2.0) || (>= 1.2.1 && < 1.3),
                network-info == 0.2.*,
                random >= 1.0.1 && < 1.1,
                time >= 1.1 && < 1.5

 Exposed-Modules:
   Data.UUID
   Data.UUID.Util
   Data.UUID.V1
   Data.UUID.V3
   Data.UUID.V4
   Data.UUID.V5

 Other-Modules:
   Data.UUID.Builder
   Data.UUID.Internal
   Data.UUID.Named
   Data.Word.Util

 Extensions: DeriveDataTypeable
 Ghc-Options:        -Wall

source-repository   head
  type:             darcs
  location:         http://code.haskell.org/uuid

Test-Suite testuuid
    Type:              exitcode-stdio-1.0
    Main-is:           TestUUID.hs
    Hs-source-dirs:    tests
    Extensions:        DeriveDataTypeable
    Ghc-Options:       -Wall -fno-warn-orphans
    Build-Depends:     base >= 3 && < 5,
                       uuid,
                       bytestring >= 0.9 && < 1.1,
                       HUnit >=1.2 && < 1.3,
                       QuickCheck >=2.4 && < 2.7,
                       random >= 1.0.1 && < 1.1,
                       test-framework == 0.8.*,
                       test-framework-hunit == 0.3.*,
                       test-framework-quickcheck2 == 0.3.*

benchmark benchmark
    Type:              exitcode-stdio-1.0
    Main-is:           BenchUUID.hs
    Hs-source-dirs:    tests
    Extensions:        DeriveDataTypeable, CPP
    Ghc-Options:       -Wall -fno-warn-orphans
    Build-depends:     base == 4.*,
                       uuid,
                       bytestring >= 0.9 && < 1.1,
                       containers >= 0.4 && < 0.6,
                       criterion >= 0.4 && < 0.9,
                       deepseq >= 1.1 && < 1.4,
                       mersenne-random-pure64,
                       random >= 1.0.1 && < 1.1

benchmark benchbytestring
  Type:              exitcode-stdio-1.0
  Hs-Source-Dirs:    tests
  Main-Is:           BenchByteString.hs
  Ghc-Options:       -threaded -rtsopts -Wall -O2 -fno-warn-orphans
  Build-Depends:     base                 >= 4       && < 5
                   , uuid
                   , bytestring           >= 0.10
                   , criterion            >= 0.8
                   , random               >= 1.0
                   , QuickCheck           >= 2