Skip to content

Commit

Permalink
relax dependencies versions bounds
Browse files Browse the repository at this point in the history
  • Loading branch information
Kazuki Okamoto committed Oct 25, 2024
1 parent 02280be commit 970167a
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions proto3-suite.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,8 @@ library
base >=4.8 && <5.0,
base64-bytestring >= 1.0.0.1 && < 1.3,
binary >=0.8.3,
bytestring >=0.10.6.0 && <0.12.0,
deepseq ==1.4.*,
bytestring >= 0.10.6.0 && < 0.13,
deepseq >= 1.4 && < 1.6,
cereal >= 0.5.1 && <0.6,
containers >=0.5 && < 0.7,
contravariant >=1.4 && <1.6,
Expand All @@ -116,7 +116,7 @@ library
haskell-src ==1.0.*,
insert-ordered-containers,
lens,
mtl ==2.2.*,
mtl >= 2.2 && < 2.4,
neat-interpolation,
parsec >= 3.1.9 && <3.2.0,
parsers >= 0.12 && <0.13,
Expand All @@ -129,11 +129,11 @@ library
split,
system-filepath,
time,
text >= 0.2 && <2.1,
text >= 0.2 && < 2.2,
text-short >=0.1.3 && <0.2,
transformers >=0.4 && <0.6,
transformers >= 0.4 && < 0.7,
turtle < 1.6.0 || >= 1.6.1 && < 1.7.0,
vector >=0.11 && < 0.13,
vector >= 0.11 && < 0.14,
attoparsec-aeson
if !impl(ghc >= 8.0)
build-depends: semigroups >= 0.18 && < 0.20
Expand Down Expand Up @@ -196,14 +196,14 @@ test-suite tests
, attoparsec >= 0.13.0.1
, base >=4.8 && <5.0
, base64-bytestring >= 1.0.0.1 && < 1.3
, bytestring >=0.10.6.0 && <0.12.0
, bytestring >= 0.10.6.0 && < 0.13.0
, cereal >= 0.5.1 && <0.6
, containers >=0.5 && < 0.7
, deepseq ==1.4.*
, deepseq >= 1.4 && < 1.6
, doctest
, generic-arbitrary
, hedgehog
, mtl ==2.2.*
, mtl >= 2.2 && < 2.4
, parsec >= 3.1.9 && <3.2.0
, pretty ==1.1.*
, pretty-show >= 1.6.12 && < 2.0
Expand All @@ -215,11 +215,11 @@ test-suite tests
, tasty-hedgehog
, tasty-hunit >= 0.9 && <0.11
, tasty-quickcheck >= 0.8.4 && <0.11
, text >= 0.2 && <2.1
, text >= 0.2 && <2.2
, text-short >=0.1.3 && <0.2
, transformers >=0.4 && <0.6
, transformers >= 0.4 && < 0.7
, turtle
, vector >=0.11 && < 0.13
, vector >=0.11 && < 0.14

if !impl(ghc >= 8.0)
build-depends: semigroups >= 0.18 && < 0.20
Expand All @@ -243,7 +243,7 @@ executable canonicalize-proto-file
default-language: Haskell2010
build-depends: base >=4.11.0.0 && <5.0
, containers >=0.5 && <0.7
, mtl ==2.2.*
, mtl >= 2.2 && < 2.4
, optparse-generic
, proto3-suite
, proto3-wire >= 1.2 && <1.5
Expand Down

0 comments on commit 970167a

Please sign in to comment.