packages feed

Cabal revisions of heaps-0.2.3

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

revision 1
-name:           heaps-version:        0.2.3-license:        BSD3-license-file:   LICENSE-author:         Edward A. Kmett-maintainer:     Edward A. Kmett <ekmett@gmail.com>-stability:      experimental-homepage:       http://github.com/ekmett/heaps/-bug-reports:    http://github.com/ekmett/heaps/issues-category:       Data Structures-synopsis:       Asymptotically optimal Brodal/Okasaki heaps.-description:    Asymptotically optimal Brodal/Okasaki bootstrapped skew-binomial heaps from the paper \"Optimal Purely Functional Priority Queues\", extended with a Foldable interface.-copyright:      (c) 2010 Edward A. Kmett-build-type:     Simple-cabal-version:  >=1.8-extra-source-files: .travis.yml--source-repository head-  type: git-  location: git://github.com/ekmett/heaps.git--library-  exposed-modules: Data.Heap-  build-depends:-    base >= 4 && < 6-  hs-source-dirs: src-  ghc-options: -O2---- Verify the results of the examples-test-suite doctests-  type:    exitcode-stdio-1.0-  main-is: doctests.hs-  build-depends:-    base,-    directory >= 1.0 && < 1.3,-    doctest >= 0.9 && <= 0.10,-    filepath-  ghc-options: -Wall-  if impl(ghc<7.6.1)-    ghc-options: -Werror-  hs-source-dirs: tests-+name:           heaps
+version:        0.2.3
+x-revision: 1
+license:        BSD3
+license-file:   LICENSE
+author:         Edward A. Kmett
+maintainer:     Edward A. Kmett <ekmett@gmail.com>
+stability:      experimental
+homepage:       http://github.com/ekmett/heaps/
+bug-reports:    http://github.com/ekmett/heaps/issues
+category:       Data Structures
+synopsis:       Asymptotically optimal Brodal/Okasaki heaps.
+description:    Asymptotically optimal Brodal/Okasaki bootstrapped skew-binomial heaps from the paper \"Optimal Purely Functional Priority Queues\", extended with a Foldable interface.
+copyright:      (c) 2010 Edward A. Kmett
+build-type:     Simple
+cabal-version:  >=1.8
+extra-source-files: .travis.yml
+
+source-repository head
+  type: git
+  location: git://github.com/ekmett/heaps.git
+
+library
+  exposed-modules: Data.Heap
+  build-depends:
+    base >= 4 && < 4.8
+  hs-source-dirs: src
+  ghc-options: -O2
+
+-- Verify the results of the examples
+test-suite doctests
+  type:    exitcode-stdio-1.0
+  main-is: doctests.hs
+  build-depends:
+    base,
+    directory >= 1.0 && < 1.3,
+    doctest >= 0.9 && <= 0.10,
+    filepath
+  ghc-options: -Wall
+  if impl(ghc<7.6.1)
+    ghc-options: -Werror
+  hs-source-dirs: tests
+