@@ -7,7 +7,7 @@ License: BSD3
7
7
License-file : LICENSE
8
8
Category : Data
9
9
Build-Type : Simple
10
- Cabal-Version : >= 1.8
10
+ Cabal-Version : >= 1.10
11
11
Tested-With : GHC== 8.0.2 , GHC== 7.10.3 , GHC== 7.8.4 , GHC== 7.6.3 , GHC== 7.4.2
12
12
13
13
Synopsis : For creating, comparing, parsing and printing Universally Unique Identifiers
@@ -29,17 +29,17 @@ Source-Repository head
29
29
Subdir : uuid
30
30
31
31
Library
32
- Build-Depends : base >= 3 && < 5 ,
33
- binary >= 0.4 && < 0.9 ,
34
- bytestring >= 0.10 && < 0.11 ,
32
+ Build-Depends : base >= 4.3 && < 5 ,
33
+ binary >= 0.4 && < 0.9 ,
34
+ bytestring >= 0.10 && < 0.11 ,
35
35
cryptohash-sha1 >= 0.11.100 && < 0.12 ,
36
- cryptohash-md5 >= 0.11.100 && < 0.12 ,
37
- entropy >= 0.3.7 && < 0.4 ,
38
- network-info == 0.2. *,
39
- random >= 1.0.1 && < 1.2 ,
40
- time >= 1.1 && < 1.8 ,
41
- text >= 1 && < 1.3 ,
42
- uuid-types >= 1.0.2 && < 2
36
+ cryptohash-md5 >= 0.11.100 && < 0.12 ,
37
+ entropy >= 0.3.7 && < 0.4 ,
38
+ network-info == 0.2. *,
39
+ random >= 1.0.1 && < 1.2 ,
40
+ time >= 1.1 && < 1.8 ,
41
+ text >= 1 && < 1.3 ,
42
+ uuid-types >= 1.0.2 && < 2
43
43
44
44
Exposed-Modules :
45
45
Data.UUID
@@ -53,19 +53,21 @@ Library
53
53
Data.UUID.Named
54
54
Data.Word.Util
55
55
56
- Extensions : DeriveDataTypeable
56
+ Default-Language : Haskell2010
57
+ Default-Extensions : DeriveDataTypeable
57
58
Other-Extensions : TypeFamilies
58
59
Ghc-Options : -Wall
59
60
60
61
Test-Suite testuuid
61
62
Type : exitcode-stdio-1.0
62
63
Main-is : TestUUID.hs
63
64
Hs-source-dirs : tests
64
- Extensions : DeriveDataTypeable
65
+ Default-Language : Haskell2010
66
+ Default-Extensions : DeriveDataTypeable
65
67
Other-Extensions : ViewPatterns
66
68
Ghc-Options : -Wall -fno-warn-orphans
67
69
Build-Depends : uuid
68
- Build-Depends : base >= 3 && < 5 ,
70
+ Build-Depends : base >= 4.3 && < 5 ,
69
71
bytestring >= 0.9 && < 0.11 ,
70
72
HUnit >= 1.2 && < 1.4 ,
71
73
QuickCheck >= 2.4 && < 2.10 ,
@@ -78,10 +80,11 @@ benchmark benchmark
78
80
Type : exitcode-stdio-1.0
79
81
Main-is : BenchUUID.hs
80
82
Hs-source-dirs : tests
81
- Extensions : DeriveDataTypeable, CPP
83
+ Default-Language : Haskell2010
84
+ Default-Extensions : DeriveDataTypeable, CPP
82
85
Ghc-Options : -Wall -fno-warn-orphans
83
86
Build-Depends : uuid
84
- Build-Depends : base == 4. * ,
87
+ Build-Depends : base >= 4.3 && < 5 ,
85
88
criterion >= 0.4 && < 1.2 ,
86
89
mersenne-random-pure64 >= 0.2 && < 0.3 ,
87
90
random >= 1.0.1 && < 1.2
0 commit comments