update bounds for GHC 8 (#73)

This commit is contained in:
Connor Clark 2016-10-24 14:25:08 -07:00 committed by GitHub Enterprise
parent d18d3251e8
commit a12e5ae8a0
2 changed files with 10 additions and 10 deletions

View File

@ -25,7 +25,7 @@ flag with-examples
library library
build-depends: build-depends:
base ==4.8.* base >=4.8 && <5.0
, clock >=0.6.0 && <0.8.0 , clock >=0.6.0 && <0.8.0
, bytestring ==0.10.* , bytestring ==0.10.*
, stm == 2.4.* , stm == 2.4.*
@ -96,7 +96,7 @@ library
executable hellos-server executable hellos-server
if flag(with-examples) if flag(with-examples)
build-depends: build-depends:
base ==4.8.* base >=4.8 && <5.0
, async , async
, bytestring == 0.10.* , bytestring == 0.10.*
, containers ==0.5.* , containers ==0.5.*
@ -115,7 +115,7 @@ executable hellos-server
executable hellos-client executable hellos-client
if flag(with-examples) if flag(with-examples)
build-depends: build-depends:
base ==4.8.* base >=4.8 && <5.0
, async , async
, bytestring == 0.10.* , bytestring == 0.10.*
, containers ==0.5.* , containers ==0.5.*
@ -134,7 +134,7 @@ executable hellos-client
executable echo-server executable echo-server
if flag(with-examples) if flag(with-examples)
build-depends: build-depends:
base ==4.8.* base >=4.8 && <5.0
, async , async
, bytestring == 0.10.* , bytestring == 0.10.*
, containers ==0.5.* , containers ==0.5.*
@ -152,7 +152,7 @@ executable echo-server
executable echo-client executable echo-client
if flag(with-examples) if flag(with-examples)
build-depends: build-depends:
base ==4.8.* base >=4.8 && <5.0
, async , async
, bytestring == 0.10.* , bytestring == 0.10.*
, containers ==0.5.* , containers ==0.5.*
@ -170,7 +170,7 @@ executable echo-client
test-suite test test-suite test
build-depends: build-depends:
base ==4.8.* base >=4.8 && <5.0
, grpc-haskell , grpc-haskell
, bytestring ==0.10.* , bytestring ==0.10.*
, unix , unix
@ -207,7 +207,7 @@ test-suite test
benchmark bench benchmark bench
type: exitcode-stdio-1.0 type: exitcode-stdio-1.0
build-depends: build-depends:
base ==4.8.* base >=4.8 && <5.0
, grpc-haskell , grpc-haskell
, async ==2.1.* , async ==2.1.*
, criterion ==1.1.* , criterion ==1.1.*

View File

@ -2,18 +2,18 @@
# For more information, see: http://docs.haskellstack.org/en/stable/yaml_configuration/ # For more information, see: http://docs.haskellstack.org/en/stable/yaml_configuration/
# Specifies the GHC version and set of packages available (e.g., lts-3.5, nightly-2015-09-21, ghc-7.10.2) # Specifies the GHC version and set of packages available (e.g., lts-3.5, nightly-2015-09-21, ghc-7.10.2)
resolver: lts-6.9 resolver: lts-7.4
# Local packages, usually specified by relative directory name # Local packages, usually specified by relative directory name
packages: packages:
- '.' - '.'
- location: - location:
git: git@github.mv.awakenetworks.net:awakenetworks/protobuf-wire.git git: git@github.mv.awakenetworks.net:awakenetworks/protobuf-wire.git
commit: 38b4af244934310edacd3defce5929f44c72d5c9 commit: 2eda7a9e33e8a2f32c3ab8c4ace338b08fb79daa
extra-dep: true extra-dep: true
- location: - location:
git: git@github.com:awakenetworks/proto3-wire.git git: git@github.com:awakenetworks/proto3-wire.git
commit: b5151914873b9ede230094e742953b5062566244 commit: 9875a18a422884f42be0b408fcdb0b7b4904532c
extra-dep: true extra-dep: true
# Packages to be pulled from upstream that are not in the resolver (e.g., acme-missiles-0.3) # Packages to be pulled from upstream that are not in the resolver (e.g., acme-missiles-0.3)
extra-deps: [managed-1.0.5] extra-deps: [managed-1.0.5]