google-oauth2-jwt 0.1.1.0 → 0.1.1.1
raw patch · 2 files changed
+20/−10 lines, 2 filesdep ~HsOpenSSLdep ~RSAdep ~base64-bytestringPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: HsOpenSSL, RSA, base64-bytestring, bytestring, text, unix-time
API changes (from Hackage documentation)
Files
- README.md +10/−0
- google-oauth2-jwt.cabal +10/−10
+ README.md view
@@ -0,0 +1,10 @@+#Google-oauth-jwt++Google-oauth-jwt implements the creation of the signed JWT for Google Service Accounts,+to make authorized calls to Google APIs from server to server. All details here:++- https://developers.google.com/identity/protocols/OAuth2ServiceAccount++Advice: be sure that the machine time is well synchronized to successfully make the access token request and get a Bearer token.++Improvements and bug reports are welcome!
google-oauth2-jwt.cabal view
@@ -1,5 +1,5 @@ name: google-oauth2-jwt-version: 0.1.1.0+version: 0.1.1.1 synopsis: Get a signed JWT for Google Service Accounts description: Please see README.md homepage: https://github.com/MichelBoucey/google-oauth2-jwt@@ -10,23 +10,23 @@ copyright: Copyright (c) 2016 - Michel Boucey category: Google build-type: Simple--- extra-source-files:-cabal-version: >=1.10+extra-source-files: README.md+cabal-version: >= 1.10 library hs-source-dirs: src exposed-modules: Network.Google.OAuth2.JWT build-depends: base >= 4.7 && < 5- , base64-bytestring- , bytestring- , HsOpenSSL- , RSA- , text- , unix-time+ , base64-bytestring >= 1.0.0.1+ , bytestring >= 0.10.6.0+ , HsOpenSSL >= 0.11.1.1+ , RSA >= 2.2.0+ , text >= 1.2.2.0+ , unix-time >= 0.3.6 default-language: Haskell2010 GHC-options: -Wall source-repository head type: git- location: https://github.com/MichelBoucey/google-oauth2-jwt+ location: git://github.com/MichelBoucey/google-oauth2-jwt.git