Skip to content

Commit

Permalink
Merge pull request #83 from phadej/lower-bounds
Browse files Browse the repository at this point in the history
Add lower bounds
  • Loading branch information
phadej committed Apr 5, 2018
2 parents 37c97c1 + 7e0c8fe commit 98cca25
Showing 1 changed file with 20 additions and 11 deletions.
31 changes: 20 additions & 11 deletions lucid.cabal
@@ -1,5 +1,6 @@
name: lucid
version: 2.9.10
x-revision: 1
synopsis: Clear to write, read and edit DSL for HTML
description:
Clear to write, read and edit DSL for HTML.
Expand Down Expand Up @@ -30,18 +31,26 @@ library
Lucid.Base
Lucid.Html5
Lucid.Bootstrap
build-depends: base >= 4.8 && <5
, blaze-builder
, bytestring
, containers
, hashable
, mmorph
, mtl
, text
, transformers
, unordered-containers

-- GHC boot libraries
build-depends: base >=4.8 && <4.12
, bytestring >=0.10.6.0
, containers >=0.5.6.2
, transformers >=0.4.2.0

-- GHC boot libraries since 8.4.
build-depends: mtl >=2.2
, text >=1.2.0.2

-- compat packages
if !impl(ghc >= 8.0)
build-depends: semigroups
build-depends: semigroups >=0.16.1

-- other dependencies
build-depends: blaze-builder >=0.4.0.0
, hashable >=1.2.3.2
, mmorph >=1.0.3
, unordered-containers >=0.2.5.1

test-suite test
type: exitcode-stdio-1.0
Expand Down

0 comments on commit 98cca25

Please sign in to comment.