gorealis v2 refactor (#5)

* Changing default timeout for start maintenance.

* Upgrading dependencies to gorealis v2 and thrift  0.12.0

* Refactored to update to gorealis v2.
This commit is contained in:
Renan DelValle 2018-12-27 11:31:51 -08:00 committed by GitHub
parent ad4dd9606e
commit 6ab5c9334d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
1335 changed files with 137431 additions and 61530 deletions

View file

@ -18,8 +18,8 @@
--
Name: thrift
Version: 0.10.0
Cabal-Version: >= 1.8
Version: 0.12.0
Cabal-Version: 1.24
License: OtherLicense
Category: Foreign
Build-Type: Simple
@ -40,7 +40,7 @@ Library
Hs-Source-Dirs:
src
Build-Depends:
base >= 4, base < 5, containers, ghc-prim, attoparsec, binary, bytestring >= 0.10, base64-bytestring, hashable, HTTP, text, unordered-containers >= 0.2.6, vector == 0.10.12.2, QuickCheck >= 2.8.2, split
base >= 4, base < 5, containers, ghc-prim, attoparsec, binary, bytestring >= 0.10, base64-bytestring, hashable, HTTP, text, hspec-core > 2.4.0, unordered-containers >= 0.2.6, vector >= 0.10.12.2, QuickCheck >= 2.8.2, split
if flag(network-uri)
build-depends: network-uri >= 2.6, network >= 2.6
else
@ -49,6 +49,7 @@ Library
Thrift,
Thrift.Arbitraries
Thrift.Protocol,
Thrift.Protocol.Header,
Thrift.Protocol.Binary,
Thrift.Protocol.Compact,
Thrift.Protocol.JSON,
@ -57,11 +58,13 @@ Library
Thrift.Transport.Empty,
Thrift.Transport.Framed,
Thrift.Transport.Handle,
Thrift.Transport.Header,
Thrift.Transport.HttpClient,
Thrift.Transport.IOBuffer,
Thrift.Transport.Memory,
Thrift.Types
Extensions:
Default-Language: Haskell2010
Default-Extensions:
DeriveDataTypeable,
ExistentialQuantification,
FlexibleInstances,
@ -78,3 +81,4 @@ Test-Suite spec
Ghc-Options: -Wall
main-is: Spec.hs
Build-Depends: base, thrift, hspec, QuickCheck >= 2.8.2, bytestring >= 0.10, unordered-containers >= 0.2.6
Default-Language: Haskell2010