Skip to content

Commit

Permalink
Update from Hackage at 2019-09-24T00:13:34Z
Browse files Browse the repository at this point in the history
  • Loading branch information
all-cabal-tool committed Sep 24, 2019
1 parent d595eef commit c12a13b
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 0 deletions.
41 changes: 41 additions & 0 deletions tskiplist/1.0.1/tskiplist.cabal
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
cabal-version: 1.12

-- This file has been generated from package.yaml by hpack version 0.31.2.
--
-- see: https://github.com/sol/hpack
--
-- hash: e50a80894df3e9028881c5fe836c7f7662523439319f741fe39f2039cbaab976

name: tskiplist
version: 1.0.1
synopsis: A Skip List Implementation in Software Transactional Memory (STM)
description: This package provides a proof-of-concept implementation of a skip list in STM. A skip list is a probabilistic data structure with dictionary operations and support for efficient range-queries (similarly to Data.Map). In contrast to tree data structures, a skip list does not need any rebalancing, which makes it particularly suitable for concurrent programming. (See: William Pugh. Skip Lists: A Probabilistic Alternative to Balanced Trees.)
category: Data, Concurrency
homepage: https://github.com/pwrobinson/tskiplist#readme
bug-reports: https://github.com/pwrobinson/tskiplist/issues
author: Peter Robinson
maintainer: peter.robinson@monoid.at
copyright: 2010-2019 Peter Robinson
license: LGPL
license-file: LICENSE
build-type: Simple

source-repository head
type: git
location: https://github.com/pwrobinson/tskiplist

library
exposed-modules:
Control.Concurrent.STM.TSkipList
Control.Concurrent.STM.TSkipList.Internal
other-modules:
Paths_tskiplist
hs-source-dirs:
src
build-depends:
array >=0.2 && <2
, base >=4.7 && <5
, containers >=0.2 && <1
, random >=1.0.0.1 && <2
, stm >=2.1 && <3
default-language: Haskell2010
1 change: 1 addition & 0 deletions tskiplist/1.0.1/tskiplist.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"package-hashes":{"MD5":"ac8307ba5ab2f39123de0157416ebf22","Skein512_512":"3084bd0c1e1f9878f7f3af961ac70f574ab18f493db51f09e47a7bd7736773932a7bd3d84b937c99ad8611f3d259f80a878dbaecaa09e4fd8c2db490968aacff","SHA1":"fc7304d19ac9905077543f592cce6fcf563286fe","SHA512":"15122a298ff90606fb1d6af9396810c33580508aabc58a435df39c73a3a11c1f88d6931b914a09cf798c66812e1b9936ebd0a560645cba97159a2e7bf3621b37","SHA256":"f74b285e2f8d28b3012e3e1f2a116d9657747ccc909ad0f4f7a0c561d213c03a"},"package-locations":["https://hackage.haskell.org/package/tskiplist-1.0.1/tskiplist-1.0.1.tar.gz","https://s3.amazonaws.com/hackage.fpcomplete.com/package/tskiplist-1.0.1.tar.gz"],"package-size":5935}

0 comments on commit c12a13b

Please sign in to comment.