Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add NonEmptyDMap --- depends on #26 #31

Open
wants to merge 10 commits into
base: master
Choose a base branch
from
10 changes: 7 additions & 3 deletions dependent-map.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: dependent-map
version: 0.2.5.1
version: 0.2.6.0
stability: provisional

cabal-version: >= 1.6
Expand Down Expand Up @@ -34,14 +34,18 @@ Library
ghc-options: -fwarn-unused-imports -fwarn-unused-binds
exposed-modules: Data.Dependent.Map,
Data.Dependent.Map.Lens,
Data.Dependent.Map.Internal
Data.Dependent.Map.NonEmpty,
Data.Dependent.Map.NonEmpty.Lens,
Data.Dependent.Map.Internal,
Data.Dependent.Map.Internal2
other-modules: Data.Dependent.Map.PtrEquality
if impl(ghc < 7.8)
other-modules: Data.Dependent.Map.Typeable
if impl(ghc < 8)
build-depends: semigroups
build-depends: base >= 3 && < 5,
containers,
dependent-sum >= 0.3.2
dependent-sum >= 0.3.2,
constraints-extras >= 0.2.3.0 && < 0.3
if impl(ghc >= 7.2) && impl(ghc < 7.8)
ghc-options: -trust base -trust dependent-sum
Loading