Merge pull request #213 from begriffs/packdeps

Loosen dependency version constraints for packdeps
This commit is contained in:
Joe Nelson
2015-06-20 12:16:05 -07:00
+15 -15
View File
@@ -2,7 +2,7 @@ name: postgrest
description: Reads the schema of a PostgreSQL database and creates RESTful routes description: Reads the schema of a PostgreSQL database and creates RESTful routes
for the tables and views, supporting all HTTP verbs that security for the tables and views, supporting all HTTP verbs that security
permits. permits.
version: 0.2.10.0 version: 0.2.10.1
synopsis: REST API for any Postgres database synopsis: REST API for any Postgres database
license: MIT license: MIT
license-file: LICENSE license-file: LICENSE
@@ -27,8 +27,8 @@ executable postgrest
default-language: Haskell2010 default-language: Haskell2010
build-depends: base >=4.6 && <5 build-depends: base >=4.6 && <5
, postgrest , postgrest
, hasql == 0.7.3.1, hasql-backend == 0.4.1 , hasql == 0.7.3.*, hasql-backend == 0.4.1.*
, hasql-postgres == 0.10.3.1 , hasql-postgres == 0.10.3.*
, warp >= 3.0.2, wai >= 3.0.1 , warp >= 3.0.2, wai >= 3.0.1
, wai-extra, wai-cors , wai-extra, wai-cors
, wai-middleware-static >= 0.6.0 , wai-middleware-static >= 0.6.0
@@ -63,25 +63,25 @@ library
default-language: Haskell2010 default-language: Haskell2010
default-extensions: OverloadedStrings, ScopedTypeVariables, QuasiQuotes default-extensions: OverloadedStrings, ScopedTypeVariables, QuasiQuotes
build-depends: base >=4.6 && <5 build-depends: base >=4.6 && <5
, hasql == 0.7.3.1, hasql-backend == 0.4.1 , hasql, hasql-backend
, hasql-postgres == 0.10.3.1 , hasql-postgres
, warp >= 3.0.2, wai >= 3.0.1 , warp, wai
, wai-extra, wai-cors , wai-extra, wai-cors
, wai-middleware-static >= 0.6.0 , wai-middleware-static
, HTTP, convertible, http-types , HTTP, convertible, http-types
, case-insensitive , case-insensitive
, scientific, time , scientific, time
, aeson, network >= 2.6 , aeson, network
, bytestring, text, split, string-conversions , bytestring, text, split, string-conversions
, stringsearch , stringsearch
, containers, unordered-containers , containers, unordered-containers
, optparse-applicative == 0.11.* , optparse-applicative
, regex-base, regex-tdfa , regex-base, regex-tdfa
, regex-tdfa-text , regex-tdfa-text
, Ranged-sets , Ranged-sets
, transformers, MissingH , transformers, MissingH
, bcrypt >= 0.0.6, base64-string , bcrypt, base64-string
, network-uri >= 2.6 , network-uri
, resource-pool , resource-pool
, blaze-builder , blaze-builder
, vector , vector
@@ -118,10 +118,10 @@ Test-Suite spec
, PostgREST.RangeQuery , PostgREST.RangeQuery
, Spec , Spec
, SpecHelper , SpecHelper
Build-Depends: base, hspec >= 2.1.2, QuickCheck Build-Depends: base, hspec == 2.1.*, QuickCheck
, hspec-wai >= 0.5.0, hspec-wai-json , hspec-wai == 0.5.*, hspec-wai-json
, hasql == 0.7.3.1, hasql-backend == 0.4.1 , hasql, hasql-backend
, hasql-postgres == 0.10.3.1 , hasql-postgres
, warp, wai , warp, wai
, packdeps, hlint , packdeps, hlint
, HTTP, convertible , HTTP, convertible