Skip to content

Commit

Permalink
Fix unneeded bounds in cabal files and syntax of tested-with (#13)
Browse files Browse the repository at this point in the history
* Fix unneeded bounds in cabal files and syntax of tested-with

* Drop subdirectory cabal.project
  • Loading branch information
Raveline authored Apr 4, 2024
1 parent 99ffc9a commit e5dcfc1
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 27 deletions.
3 changes: 0 additions & 3 deletions tracing-effectful/cabal.project

This file was deleted.

7 changes: 3 additions & 4 deletions tracing-effectful/tracing-effectful.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@ description:

build-type: Simple
extra-doc-files: CHANGELOG.md
tested-with:
GHC ==8.10.7 || ==9.0.2 || ==9.2.8 || ==9.4.8 || ==9.6.4 || ==9.8.2
tested-with: GHC == { 8.10.7, 9.0.2, 9.2.8, 9.4.8, 9.6.4, 9.8.2 }

common language
ghc-options: -Wall -Wcompat -Wno-unticked-promoted-constructors
Expand All @@ -32,8 +31,8 @@ library
build-depends:
, base <5
, effectful-core >=1.0.0.0 && <3.0.0.0
, exceptions <0.11
, tracing ==1.0.0.0
, exceptions >=0.10
, tracing >=1.0

hs-source-dirs: src

Expand Down
39 changes: 19 additions & 20 deletions tracing.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@ maintainer: [email protected]
copyright: 2020 Matthieu Monsch
build-type: Simple
extra-source-files: README.md
tested-with:
GHC ==8.10.7 || ==9.0.2 || ==9.2.8 || ==9.4.8 || ==9.6.4 || ==9.8.2
tested-with: GHC == { 8.10.7, 9.0.2, 9.2.8, 9.4.8, 9.6.4, 9.8.2 }

source-repository head
type: git
Expand All @@ -32,24 +31,24 @@ library

other-modules: Control.Monad.Trace.Internal
build-depends:
, aeson <=2.3
, base <5
, base16-bytestring <=1.1
, bytestring <=0.13
, case-insensitive <=1.3
, containers <=0.7
, exceptions <=0.11
, http-client <=0.8
, lifted-base <=0.3
, monad-control <=1.1
, mtl <=2.3.1
, network <=3.2
, random <=1.3
, stm <=2.6
, text <=2.1.1
, time <=1.13
, transformers <=0.6.1.0
, transformers-base <=0.5
aeson >= 2.0
, base >= 4.14 && < 5
, base16-bytestring >= 1.0
, bytestring >= 0.10
, case-insensitive >= 1.2
, containers >= 0.6
, exceptions >= 0.10
, http-client >= 0.5
, lifted-base >= 0.2.3
, monad-control >= 1.0
, mtl >= 2.2
, network >= 2.8
, random >= 1.1
, stm >= 2.5
, text >= 1.2
, time >= 1.8
, transformers >= 0.5
, transformers-base >= 0.4

ghc-options: -Wall
default-language: Haskell2010
Expand Down

0 comments on commit e5dcfc1

Please sign in to comment.