packages feed

Cabal revisions of test-lib-0.5

Hackage metadata revisions edit the .cabal file after upload; each diff below is one revision.

revision 1
-Cabal-version:       3.0-name:                test-lib-version:             0.5-synopsis:            A library to make a quick test-runner script.-description:         This library makes it easy to define an executable,-                     which can find and run a bunch of tests for a binary.-license:             ISC-license-file:        LICENSE-author:              Iavor Diatchki-maintainer:          iavor.diatchki@gmail.com-category:            Testing-build-type:          Simple-extra-source-files:  CHANGELOG.md--library-  hs-source-dirs:      src-  exposed-modules:     TestLib-  other-modules:       Paths_test_lib-  autogen-modules:     Paths_test_lib-  build-depends:       base                  >=4.9 && <4.20,-                       directory             >=1.3 && <1.4,-                       filepath              >=1.4 && <1.5,-                       process               >=1.4 && <1.7,-                       containers            >=0.5 && <0.7,-                       HUnit                 >= 1.3.0 && < 1.7,-                       simple-get-opt        >= 0.2.0 && < 0.5,-                       test-framework        >= 0.8.0 && < 0.9,-                       test-framework-hunit  >= 0.3.0 && < 0.4---  ghc-options:         -Wall-  default-language:    Haskell2010--executable test-runner-  hs-source-dirs:      exe-  main-is:             Main.hs-  build-depends:       base, simple-get-opt, test-lib-  ghc-options:         -Wall-  default-language:    Haskell2010--+Cabal-version:       3.0
+name:                test-lib
+version:             0.5
+x-revision: 1
+synopsis:            A library to make a quick test-runner script.
+description:         This library makes it easy to define an executable,
+                     which can find and run a bunch of tests for a binary.
+license:             ISC
+license-file:        LICENSE
+author:              Iavor Diatchki
+maintainer:          iavor.diatchki@gmail.com
+category:            Testing
+build-type:          Simple
+extra-source-files:  CHANGELOG.md
+
+library
+  hs-source-dirs:      src
+  exposed-modules:     TestLib
+  other-modules:       Paths_test_lib
+  autogen-modules:     Paths_test_lib
+  build-depends:       base                  >=4.9 && <4.22,
+                       directory             >=1.3 && <1.4,
+                       filepath              >=1.4 && <1.6,
+                       process               >=1.4 && <1.7,
+                       containers            >=0.5 && <0.8,
+                       HUnit                 >= 1.3.0 && < 1.7,
+                       simple-get-opt        >= 0.2.0 && < 0.5,
+                       test-framework        >= 0.8.0 && < 0.9,
+                       test-framework-hunit  >= 0.3.0 && < 0.4
+
+
+  ghc-options:         -Wall
+  default-language:    Haskell2010
+
+executable test-runner
+  hs-source-dirs:      exe
+  main-is:             Main.hs
+  build-depends:       base, simple-get-opt, test-lib
+  ghc-options:         -Wall
+  default-language:    Haskell2010
+
+