packages feed

Cabal revisions of queues-1.0.0

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

revision 1
 cabal-version: 2.2 -author: Mitchell Rosen, Travis Staton+author: Mitchell Dalvi Rosen, Travis Staton bug-reports: https://github.com/awkward-squad/queues/issues category: Data-copyright: Copyright (C) 2023-2024 Mitchell Rosen, Travis Staton+copyright: Copyright (C) 2023-2024 Mitchell Dalvi Rosen, Travis Staton homepage: https://github.com/awkward-squad/queues license: BSD-3-Clause license-file: LICENSE-maintainer: Mitchell Rosen <mitchellwrosen@gmail.com>, Travis Staton <hello@travisstaton.com>+maintainer: Mitchell Dalvi Rosen <mitchellwrosen@gmail.com>, Travis Staton <hello@travisstaton.com> name: queues synopsis: Queue data structures.-tested-with: GHC == 9.4.8, GHC == 9.6.4, GHC == 9.8.2+tested-with: GHC == 9.6.5, GHC == 9.8.2, GHC == 9.10.1 version: 1.0.0+x-revision: 1  description:   Queue data structures, as described in
revision 2
 synopsis: Queue data structures. tested-with: GHC == 9.6.5, GHC == 9.8.2, GHC == 9.10.1 version: 1.0.0-x-revision: 1+x-revision: 2  description:   Queue data structures, as described in library   import: component   build-depends:-    base ^>= 4.15 || ^>= 4.16 || ^>= 4.17 || ^>= 4.18 || ^>= 4.19,+    base ^>= 4.15 || ^>= 4.16 || ^>= 4.17 || ^>= 4.18 || ^>= 4.19 || ^>= 4.20,   exposed-modules:     Queue     Queue.Ephemeral
revision 3
 synopsis: Queue data structures. tested-with: GHC == 9.6.5, GHC == 9.8.2, GHC == 9.10.1 version: 1.0.0-x-revision: 2+x-revision: 3  description:   Queue data structures, as described in   build-depends:     base,     queues,-    tasty-bench ^>= 0.3.5,+    tasty-bench ^>= 0.3.5 || ^>= 0.4,   ghc-options: -fproc-alignment=64 -rtsopts -threaded   hs-source-dirs: bench/ephemeral-queue   main-is: Main.hs   build-depends:     base,     queues,-    tasty-bench ^>= 0.3.5,+    tasty-bench ^>= 0.3.5 || ^>= 0.4,   ghc-options: -fproc-alignment=64 -rtsopts -threaded   hs-source-dirs: bench/real-time-queue   main-is: Main.hs   build-depends:     base,     containers ^>= 0.6.7 || ^>= 0.7,-    tasty-bench ^>= 0.3.5,+    tasty-bench ^>= 0.3.5 || ^>= 0.4,   ghc-options: -fproc-alignment=64 -rtsopts -threaded   hs-source-dirs: bench/sequence-queue   main-is: Main.hs
revision 4
 author: Mitchell Dalvi Rosen, Travis Staton bug-reports: https://github.com/awkward-squad/queues/issues category: Data-copyright: Copyright (C) 2023-2024 Mitchell Dalvi Rosen, Travis Staton+copyright: Copyright (C) 2023-2025 Mitchell Dalvi Rosen, Travis Staton homepage: https://github.com/awkward-squad/queues license: BSD-3-Clause license-file: LICENSE maintainer: Mitchell Dalvi Rosen <mitchellwrosen@gmail.com>, Travis Staton <hello@travisstaton.com> name: queues synopsis: Queue data structures.-tested-with: GHC == 9.6.5, GHC == 9.8.2, GHC == 9.10.1+tested-with: GHC == 9.8.4, GHC == 9.10.1, GHC == 9.12.1 version: 1.0.0-x-revision: 3+x-revision: 4  description:   Queue data structures, as described in     ghc-options:       -Wno-missing-role-annotations -library-  import: component+common build-depends-base   build-depends:-    base ^>= 4.15 || ^>= 4.16 || ^>= 4.17 || ^>= 4.18 || ^>= 4.19 || ^>= 4.20,+    base ^>= 4.15 || ^>= 4.16 || ^>= 4.17 || ^>= 4.18 || ^>= 4.19 || ^>= 4.20 || ^>= 4.21++common build-depends-containers+  build-depends:+    containers ^>= 0.6.7 || ^>= 0.7 || ^>= 0.8++common build-depends-tasty-bench+  build-depends:+    tasty-bench ^>= 0.3.5 || ^>= 0.4++library+  import:+    component,+    build-depends-base,   exposed-modules:     Queue     Queue.Ephemeral   hs-source-dirs: src  test-suite test-  import: component+  import:+    component,+    build-depends-base,+    build-depends-containers,   build-depends:-    base,-    containers ^>= 0.6.7 || ^>= 0.7,-    hedgehog ^>= 1.4,+    hedgehog ^>= 1.4 || ^>= 1.5,     queues,   ghc-options: -rtsopts -threaded "-with-rtsopts=-N4"   hs-source-dirs: test   type: exitcode-stdio-1.0  benchmark bench-ephemeral-queue-  import: component+  import:+    component,+    build-depends-base,+    build-depends-tasty-bench,   build-depends:-    base,     queues,-    tasty-bench ^>= 0.3.5 || ^>= 0.4,   ghc-options: -fproc-alignment=64 -rtsopts -threaded   hs-source-dirs: bench/ephemeral-queue   main-is: Main.hs   type: exitcode-stdio-1.0  benchmark bench-real-time-queue-  import: component+  import:+    component,+    build-depends-base,+    build-depends-tasty-bench,   build-depends:-    base,     queues,-    tasty-bench ^>= 0.3.5 || ^>= 0.4,   ghc-options: -fproc-alignment=64 -rtsopts -threaded   hs-source-dirs: bench/real-time-queue   main-is: Main.hs   type: exitcode-stdio-1.0  benchmark bench-sequence-queue-  import: component-  build-depends:-    base,-    containers ^>= 0.6.7 || ^>= 0.7,-    tasty-bench ^>= 0.3.5 || ^>= 0.4,+  import:+    component,+    build-depends-base,+    build-depends-containers,+    build-depends-tasty-bench,   ghc-options: -fproc-alignment=64 -rtsopts -threaded   hs-source-dirs: bench/sequence-queue   main-is: Main.hs
revision 5
 synopsis: Queue data structures. tested-with: GHC == 9.8.4, GHC == 9.10.1, GHC == 9.12.1 version: 1.0.0-x-revision: 4+x-revision: 5  description:   Queue data structures, as described in     * Okasaki, Chris. /Purely Functional Data Structures/. Diss. Princeton University, 1996.   .   A queue has a \"back\" where new elements are enqueued, and a \"front\" where elements are dequeued in the order that-  they were enqueued (last in, first out).+  they were enqueued (first in, first out).   .   The queues provided in this library also support an \"enqueue at front\" operation, because the underlying   representations happen to support it, so you might technically refer to these data structures as
revision 6
 synopsis: Queue data structures. tested-with: GHC == 9.8.4, GHC == 9.10.1, GHC == 9.12.1 version: 1.0.0-x-revision: 5+x-revision: 6  description:   Queue data structures, as described in     build-depends-base,     build-depends-containers,   build-depends:-    hedgehog ^>= 1.4 || ^>= 1.5,+    hedgehog ^>= 1.4 || ^>= 1.5 || ^>= 1.6,     queues,   ghc-options: -rtsopts -threaded "-with-rtsopts=-N4"   hs-source-dirs: test