packages feed

Stack-0.3.2: Stack.cabal

name: Stack
version: 0.3.2
cabal-version: >=1.10
build-type: Simple
license: BSD3
license-file: LICENSE
copyright: 2016 Robert Walker
maintainer: rwlock404@yahoo.com
homepage: https://en.wikipedia.org/wiki/Stack_(abstract_data_type)
synopsis: Stack data structure
description:
    A stack is a basic data structure that can be logically thought as linear structure represented by a real physical stack or pile, a structure where insertion and deletion of items takes place at one end called top of the stack.
    .
    <<https://upload.wikimedia.org/wikipedia/commons/b/b4/Lifo_stack.png>>
category: Data Structures
author: Robert Walker

source-repository head
    type: git
    location: https://github.com/githubuser/Stack

library
    exposed-modules:
        Data.Stack
        Data.Stack.ST
        Control.Concurrent.STM.Stack
        Control.Concurrent.Stack
    build-depends:
        base >=4.7 && <5,
        nats >=1.1.1 && <1.2,
        stm >=2.4.4.1 && <2.5
    default-language: Haskell2010
    hs-source-dirs: src