Skip to content

Commit

Permalink
Added upper limits of required dependencies (#176)
Browse files Browse the repository at this point in the history
* Added upper limits of required dependencies

* Correction when defining the boundaries of each dependency

* boundary correction

* lower the boundaries for text

* fix: Low boundaries for megaparsec

* fix: Increase boundaries for text

---------

Co-authored-by: Daniel Cortez <rdcortezmanzano24@gmail.com>
Co-authored-by: CristhianMotoche <cristhian.motoche@gmail.com>
  • Loading branch information
3 people authored Nov 20, 2023
1 parent 2e04ec8 commit 92f8116
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions dotenv.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ flag dev

executable dotenv
main-is: Main.hs
build-depends: base >= 4.14 && < 5.0
, base-compat >= 0.4
build-depends: base
, base-compat >= 0.4.0
, dotenv
, optparse-applicative >= 0.11 && < 0.19
, megaparsec
Expand All @@ -91,13 +91,13 @@ library
, Configuration.Dotenv.Text
, Configuration.Dotenv.Types

build-depends: base >= 4.9 && < 5.0
, directory
build-depends: base >= 4.14
, directory >= 1.3.6 && < 1.4
, megaparsec >= 7.0.1 && < 10.0
, containers
, process >= 1.6.3.0 && < 1.7
, shellwords >= 0.1.3.0
, text
, containers >= 0.6.5 && < 1.7
, process >= 1.6.16 && < 1.7
, shellwords >= 0.1.3 && < 0.2
, text >= 1.2.0.0 && < 3.0
, exceptions >= 0.8 && < 0.11
, mtl >= 2.2.2 && < 2.4
, data-default-class >= 0.1.2 && < 0.2
Expand All @@ -118,10 +118,10 @@ test-suite dotenv-test
, Configuration.Dotenv.TextSpec
, Configuration.Dotenv.ParseSpec

build-depends: base >= 4.9 && < 5.0
build-depends: base
, dotenv
, megaparsec
, hspec
, hspec >= 2.9.7 && <= 2.11.4
, process
, text
, hspec-megaparsec >= 2.0 && < 3.0
Expand Down

0 comments on commit 92f8116

Please sign in to comment.