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
|
Index: b/Glob.cabal
===================================================================
--- a/Glob.cabal
+++ b/Glob.cabal
@@ -2,6 +2,7 @@ Cabal-Version: >= 1.10
Name: Glob
Version: 0.10.2
+x-revision: 3
Homepage: http://iki.fi/matti.niemenmaa/glob/
Synopsis: Globbing library
Category: System
@@ -25,19 +26,19 @@ Source-Repository head
Location: https://github.com/Deewiant/glob
Library
- Build-Depends: base >= 4 && < 5
- , containers < 0.7
- , directory < 1.4
- , dlist >= 0.4 && < 1.1
- , filepath >= 1.1 && < 1.5
- , transformers >= 0.2 && < 0.6
- , transformers-compat >= 0.3 && < 0.8
+ Build-Depends: base >= 4 && < 5
+ , containers
+ , directory
+ , dlist >= 0.4
+ , filepath >= 1.1
+ , transformers >= 0.2
+ , transformers-compat >= 0.3
if impl(ghc < 8.0)
- Build-Depends: semigroups >= 0.18 && < 0.20
+ Build-Depends: semigroups >= 0.18
if os(windows)
- Build-Depends: Win32 == 2.*
+ Build-Depends: Win32 >= 2.5
Default-Language: Haskell98
@@ -58,23 +59,23 @@ Test-Suite glob-tests
main-is: Main.hs
Build-Depends: base >= 4 && < 5
- , containers < 0.7
- , directory < 1.4
- , dlist >= 0.4 && < 1.1
- , filepath >= 1.1 && < 1.5
- , transformers >= 0.2 && < 0.6
- , transformers-compat >= 0.3 && < 0.8
- , HUnit >= 1.2 && < 1.7
- , QuickCheck >= 2 && < 3
- , test-framework >= 0.2 && < 1
- , test-framework-hunit >= 0.2 && < 1
- , test-framework-quickcheck2 >= 0.3 && < 1
+ , containers
+ , directory
+ , dlist >= 0.4
+ , filepath >= 1.1
+ , transformers >= 0.2
+ , transformers-compat >= 0.3
+ , HUnit >= 1.2
+ , QuickCheck >= 2
+ , test-framework >= 0.2
+ , test-framework-hunit >= 0.2
+ , test-framework-quickcheck2 >= 0.3
if impl(ghc < 8.0)
- Build-Depends: semigroups >= 0.18 && < 0.20
+ Build-Depends: semigroups >= 0.18
if os(windows)
- Build-Depends: Win32 == 2.*
+ Build-Depends: Win32 >= 2
Default-Language: Haskell98
@@ -94,4 +95,4 @@ Test-Suite glob-tests
Tests.Simplifier
Tests.Utils
- GHC-Options: -Wall
+ GHC-Options: -Wall
\ No newline at end of file
|