Relax dependency bounds

This commit is contained in:
patrick brisbin 2021-03-01 09:54:58 -05:00
parent cdb8432248
commit 6f05c042b2
2 changed files with 7 additions and 7 deletions

View File

@ -26,8 +26,8 @@ library:
source-dirs: src source-dirs: src
dependencies: dependencies:
- aeson >=0.6 && <1.6 - aeson >=0.6 && <1.6
- bytestring >=0.9.1.4 - bytestring >=0.9.1.4 && < 0.12
- cryptonite >=0.25 && <0.28 - cryptonite >=0.25 && <0.29
- errors - errors
- hoauth2 >=1.11.0 && <1.17 - hoauth2 >=1.11.0 && <1.17
- http-client >=0.4.0 && <0.8 - http-client >=0.4.0 && <0.8
@ -53,7 +53,7 @@ executables:
- yesod-auth-oauth2 - yesod-auth-oauth2
- aeson >=0.6 && <1.6 - aeson >=0.6 && <1.6
- aeson-pretty - aeson-pretty
- bytestring >=0.9.1.4 - bytestring >=0.9.1.4 && < 0.12
- containers - containers
- http-conduit >=2.0 && <3.0 - http-conduit >=2.0 && <3.0
- load-env - load-env

View File

@ -4,7 +4,7 @@ cabal-version: 1.12
-- --
-- see: https://github.com/sol/hpack -- see: https://github.com/sol/hpack
-- --
-- hash: a48bcec60db26dacb925a1706d7ce16291553c16ca0a4370ed20445d461d9c2a -- hash: 246d2ae1541d25b074682a55dd9504366d1632ce85d8b60cfdfb99560bc367bc
name: yesod-auth-oauth2 name: yesod-auth-oauth2
version: 0.6.2.2 version: 0.6.2.2
@ -63,8 +63,8 @@ library
build-depends: build-depends:
aeson >=0.6 && <1.6 aeson >=0.6 && <1.6
, base >=4.9.0.0 && <5 , base >=4.9.0.0 && <5
, bytestring >=0.9.1.4 , bytestring >=0.9.1.4 && <0.12
, cryptonite >=0.25 && <0.28 , cryptonite >=0.25 && <0.29
, errors , errors
, hoauth2 >=1.11.0 && <1.17 , hoauth2 >=1.11.0 && <1.17
, http-client >=0.4.0 && <0.8 , http-client >=0.4.0 && <0.8
@ -90,7 +90,7 @@ executable yesod-auth-oauth2-example
aeson >=0.6 && <1.6 aeson >=0.6 && <1.6
, aeson-pretty , aeson-pretty
, base >=4.9.0.0 && <5 , base >=4.9.0.0 && <5
, bytestring >=0.9.1.4 , bytestring >=0.9.1.4 && <0.12
, containers , containers
, http-conduit >=2.0 && <3.0 , http-conduit >=2.0 && <3.0
, load-env , load-env