name: deque version: 0.2.7 synopsis: Double-ended queue description: An implementation of Double-Ended Queue (aka Dequeue or Deque) based on the head-tail linked list. homepage: https://github.com/nikita-volkov/deque bug-reports: https://github.com/nikita-volkov/deque/issues author: Nikita Volkov maintainer: Nikita Volkov copyright: (c) 2016, Nikita Volkov license: MIT license-file: LICENSE build-type: Simple cabal-version: >=1.10 source-repository head type: git location: git://github.com/nikita-volkov/deque.git library hs-source-dirs: library default-extensions: DeriveFunctor, ScopedTypeVariables, StandaloneDeriving default-language: Haskell2010 exposed-modules: Deque build-depends: base >= 4.9 && < 5 test-suite test type: exitcode-stdio-1.0 hs-source-dirs: test default-extensions: DeriveFunctor, ScopedTypeVariables, StandaloneDeriving default-language: Haskell2010 main-is: Main.hs build-depends: deque, QuickCheck >=2.8.1 && <3, quickcheck-instances >=0.3.11 && <0.4, rerebase <2, tasty >=0.12 && <2, tasty-hunit >=0.9 && <0.11, tasty-quickcheck >=0.9 && <0.11